Skip to content

Commit 7c4b843

Browse files
committed
Docstring formatting
1 parent 09cb9a1 commit 7c4b843

3 files changed

Lines changed: 209 additions & 91 deletions

File tree

clients/aws-sdk-transcribe-streaming/src/aws_sdk_transcribe_streaming/client.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ async def get_medical_scribe_stream(
8989
:param plugins: A list of callables that modify the configuration dynamically.
9090
Changes made by these plugins only apply for the duration of the operation
9191
execution and will not affect any other operation invocations.
92-
9392
"""
9493
operation_plugins: list[Plugin] = []
9594
if plugins:
@@ -146,7 +145,6 @@ async def start_call_analytics_stream_transcription(
146145
:param plugins: A list of callables that modify the configuration dynamically.
147146
Changes made by these plugins only apply for the duration of the operation
148147
execution and will not affect any other operation invocations.
149-
150148
"""
151149
operation_plugins: list[Plugin] = []
152150
if plugins:
@@ -227,7 +225,6 @@ async def start_medical_scribe_stream(
227225
:param plugins: A list of callables that modify the configuration dynamically.
228226
Changes made by these plugins only apply for the duration of the operation
229227
execution and will not affect any other operation invocations.
230-
231228
"""
232229
operation_plugins: list[Plugin] = []
233230
if plugins:
@@ -289,7 +286,6 @@ async def start_medical_stream_transcription(
289286
:param plugins: A list of callables that modify the configuration dynamically.
290287
Changes made by these plugins only apply for the duration of the operation
291288
execution and will not affect any other operation invocations.
292-
293289
"""
294290
operation_plugins: list[Plugin] = []
295291
if plugins:
@@ -346,7 +342,6 @@ async def start_stream_transcription(
346342
:param plugins: A list of callables that modify the configuration dynamically.
347343
Changes made by these plugins only apply for the duration of the operation
348344
execution and will not affect any other operation invocations.
349-
350345
"""
351346
operation_plugins: list[Plugin] = []
352347
if plugins:

clients/aws-sdk-transcribe-streaming/src/aws_sdk_transcribe_streaming/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
@dataclass(init=False)
6767
class Config:
68-
"""Configuration for Transcribe."""
68+
"""Configuration for Transcribe Streaming."""
6969

7070
auth_scheme_resolver: HTTPAuthSchemeResolver
7171
auth_schemes: dict[ShapeID, AuthScheme[Any, Any, Any, Any]]
@@ -109,7 +109,8 @@ def __init__(
109109
transport: ClientTransport[Any, Any] | None = None,
110110
user_agent_extra: str | None = None,
111111
):
112-
"""Constructor.
112+
"""
113+
Constructor.
113114
114115
:param auth_scheme_resolver:
115116
An auth scheme resolver that determines the auth scheme for each operation.
@@ -161,7 +162,6 @@ def __init__(
161162
162163
:param user_agent_extra:
163164
Additional suffix to be added to the User-Agent header.
164-
165165
"""
166166
self.auth_scheme_resolver = auth_scheme_resolver or HTTPAuthSchemeResolver()
167167
self.auth_schemes = auth_schemes or {

0 commit comments

Comments
 (0)