Skip to content

Commit eb28453

Browse files
committed
lint
1 parent c5a0cf5 commit eb28453

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/toolbox-core/src/toolbox_core/sync_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ def __init__(
5757
async def create_client():
5858
return ToolboxClient(url)
5959

60+
# Ignoring type since we're already checking the existing of a loop above.
6061
self.__async_client = asyncio.run_coroutine_threadsafe(
61-
create_client(), ToolboxSyncClient.__loop
62+
create_client(), ToolboxSyncClient.__loop # type: ignore
6263
).result()
6364

6465
def close(self):

0 commit comments

Comments
 (0)