Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ib_async/ib.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def connect(
account: str = "",
raiseSyncErrors: bool = False,
fetchFields: StartupFetch = StartupFetchALL,
):
) -> 'IB':
"""
Connect to a running TWS or IB gateway application.
After the connection is made the client is fully synchronized
Expand Down Expand Up @@ -2044,7 +2044,7 @@ async def connectAsync(
account: str = "",
raiseSyncErrors: bool = False,
fetchFields: StartupFetch = StartupFetchALL,
):
) -> 'IB':
clientId = int(clientId)
self.wrapper.clientId = clientId
timeout = timeout or None
Expand Down