Skip to content

Commit d972b3e

Browse files
committed
Format
1 parent c51cf87 commit d972b3e

File tree

14 files changed

+24
-23
lines changed

14 files changed

+24
-23
lines changed

fishjam/_openapi_client/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
""" A client library for accessing Fishjam Media Server """
1+
"""A client library for accessing Fishjam Media Server"""
2+
23
from .client import AuthenticatedClient, Client
34

45
__all__ = (
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
""" Contains methods for accessing the API """
1+
"""Contains methods for accessing the API"""
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
""" Contains endpoint functions for accessing the API """
1+
"""Contains endpoint functions for accessing the API"""
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
""" Contains endpoint functions for accessing the API """
1+
"""Contains endpoint functions for accessing the API"""
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
""" Contains endpoint functions for accessing the API """
1+
"""Contains endpoint functions for accessing the API"""
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
""" Contains endpoint functions for accessing the API """
1+
"""Contains endpoint functions for accessing the API"""

fishjam/_openapi_client/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Contains shared errors types that can be raised from API functions """
1+
"""Contains shared errors types that can be raised from API functions"""
22

33

44
class UnexpectedStatus(Exception):

fishjam/_openapi_client/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Contains all the data models used in inputs/outputs """
1+
"""Contains all the data models used in inputs/outputs"""
22

33
from .add_peer_body import AddPeerBody
44
from .error import Error

fishjam/_openapi_client/models/peer_options_agent.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ class PeerOptionsAgent:
3030
"""
3131

3232
output: Union[Unset, "PeerOptionsAgentOutput"] = UNSET
33-
subscribe_mode: Union[
34-
Unset, PeerOptionsAgentSubscribeMode
35-
] = PeerOptionsAgentSubscribeMode.AUTO
33+
subscribe_mode: Union[Unset, PeerOptionsAgentSubscribeMode] = (
34+
PeerOptionsAgentSubscribeMode.AUTO
35+
)
3636
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
3737

3838
def to_dict(self) -> dict[str, Any]:

fishjam/_openapi_client/models/peer_options_agent_output.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ class PeerOptionsAgentOutput:
3030
Default: PeerOptionsAgentOutputAudioSampleRate.VALUE_16000. Example: 16000.
3131
"""
3232

33-
audio_format: Union[
34-
Unset, PeerOptionsAgentOutputAudioFormat
35-
] = PeerOptionsAgentOutputAudioFormat.PCM16
36-
audio_sample_rate: Union[
37-
Unset, PeerOptionsAgentOutputAudioSampleRate
38-
] = PeerOptionsAgentOutputAudioSampleRate.VALUE_16000
33+
audio_format: Union[Unset, PeerOptionsAgentOutputAudioFormat] = (
34+
PeerOptionsAgentOutputAudioFormat.PCM16
35+
)
36+
audio_sample_rate: Union[Unset, PeerOptionsAgentOutputAudioSampleRate] = (
37+
PeerOptionsAgentOutputAudioSampleRate.VALUE_16000
38+
)
3939
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
4040

4141
def to_dict(self) -> dict[str, Any]:

0 commit comments

Comments
 (0)