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 6be5193 commit 3ca2e1eCopy full SHA for 3ca2e1e
packages/toolbox-core/src/toolbox_core/sync_client.py
@@ -63,15 +63,15 @@ async def create_client():
63
).result()
64
65
@property
66
- def _async_client(self) -> Optional[ToolboxClient]:
+ def _async_client(self) -> ToolboxClient:
67
return self.__async_client
68
69
70
def _loop(self) -> Optional[AbstractEventLoop]:
71
return self.__class__.__loop
72
73
74
- def _thread(self) -> Thread:
+ def _thread(self) -> Optional[Thread]:
75
return self.__class__.__thread
76
77
def close(self):
0 commit comments