Skip to content

Commit 4c0a601

Browse files
committed
lint
1 parent 000d45c commit 4c0a601

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

deepgram/clients/common/v1/abstract_sync_websocket.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,12 @@ class AbstractSyncWebSocketClient(ABC): # pylint: disable=too-many-instance-att
5959
_options: Optional[Dict] = None
6060
_headers: Optional[Dict] = None
6161

62-
def __init__(self, config: DeepgramClientOptions, endpoint: str = "", thread_cls: Type[threading.Thread] = threading.Thread) -> None:
62+
def __init__(
63+
self,
64+
config: DeepgramClientOptions,
65+
endpoint: str = "",
66+
thread_cls: Type[threading.Thread] = threading.Thread,
67+
):
6368
if config is None:
6469
raise DeepgramError("Config is required")
6570
if endpoint == "":

deepgram/clients/listen/v1/websocket/client.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@ class ListenWebSocketClient(
6262
_options: Optional[Dict] = None
6363
_headers: Optional[Dict] = None
6464

65-
def __init__(self, config: DeepgramClientOptions, thread_cls: Type[threading.Thread] = threading.Thread):
65+
def __init__(
66+
self,
67+
config: DeepgramClientOptions,
68+
thread_cls: Type[threading.Thread] = threading.Thread,
69+
):
6670
if config is None:
6771
raise DeepgramError("Config is required")
6872

0 commit comments

Comments
 (0)