We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5a0cf5 commit eb28453Copy full SHA for eb28453
packages/toolbox-core/src/toolbox_core/sync_client.py
@@ -57,8 +57,9 @@ def __init__(
57
async def create_client():
58
return ToolboxClient(url)
59
60
+ # Ignoring type since we're already checking the existing of a loop above.
61
self.__async_client = asyncio.run_coroutine_threadsafe(
- create_client(), ToolboxSyncClient.__loop
62
+ create_client(), ToolboxSyncClient.__loop # type: ignore
63
).result()
64
65
def close(self):
0 commit comments