Skip to content

Commit 3ca2e1e

Browse files
committed
chore: Fix types
1 parent 6be5193 commit 3ca2e1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ async def create_client():
6363
).result()
6464

6565
@property
66-
def _async_client(self) -> Optional[ToolboxClient]:
66+
def _async_client(self) -> ToolboxClient:
6767
return self.__async_client
6868

6969
@property
7070
def _loop(self) -> Optional[AbstractEventLoop]:
7171
return self.__class__.__loop
7272

7373
@property
74-
def _thread(self) -> Thread:
74+
def _thread(self) -> Optional[Thread]:
7575
return self.__class__.__thread
7676

7777
def close(self):

0 commit comments

Comments
 (0)