Skip to content

Commit 6be5193

Browse files
committed
chore: Fix types
1 parent 47532c9 commit 6be5193

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,11 +63,11 @@ async def create_client():
6363
).result()
6464

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

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

7373
@property

0 commit comments

Comments
 (0)