Skip to content

Commit b26aa11

Browse files
fix: specify the return type to _get_account_socket (sammchardy#1517)
1 parent 157184b commit b26aa11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

binance/ws/streams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _get_account_socket(
9494
stream_url: Optional[str] = None,
9595
prefix: str = "ws/",
9696
is_binary: bool = False,
97-
):
97+
) -> KeepAliveWebsocket:
9898
conn_id = f"{BinanceSocketType.ACCOUNT}_{path}"
9999
if conn_id not in self._conns:
100100
self._conns[conn_id] = KeepAliveWebsocket(

0 commit comments

Comments
 (0)