Skip to content

Commit be8d162

Browse files
author
Georgios Hadjiharalambous
committed
Enforce keyword args to all public methods
1 parent 46997dd commit be8d162

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/rt/speechmatics/rt/_async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ async def stop_session(self) -> None:
167167
await self._session_done_evt.wait() # Wait for end of transcript event to indicate we can stop listening
168168
await self.close()
169169

170-
async def force_end_of_utterance(self, timestamp: Optional[float] = None) -> None:
170+
async def force_end_of_utterance(self, *, timestamp: Optional[float] = None) -> None:
171171
"""
172172
This method sends a ForceEndOfUtterance message to the server to signal
173173
the end of an utterance. Forcing end of utterance will cause the final

0 commit comments

Comments
 (0)