Skip to content

Commit 3d2a5dc

Browse files
committed
chore: Remove unused typevar variables
1 parent 7bb2e88 commit 3d2a5dc

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@
1515

1616
import asyncio
1717
from threading import Thread
18-
from typing import Any, Callable, Coroutine, Mapping, Optional, TypeVar, Union
18+
from typing import Any, Callable, Coroutine, Mapping, Optional, Union
1919

2020
from .client import ToolboxClient
2121
from .sync_tool import ToolboxSyncTool
2222

23-
T = TypeVar("T")
24-
2523

2624
class ToolboxSyncClient:
2725
"""

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
from asyncio import AbstractEventLoop
1818
from inspect import Signature
1919
from threading import Thread
20-
from typing import Any, Callable, Mapping, TypeVar, Union
20+
from typing import Any, Callable, Mapping, Union
2121

2222
from .tool import ToolboxTool
2323

24-
T = TypeVar("T")
25-
2624

2725
class ToolboxSyncTool:
2826
"""

0 commit comments

Comments
 (0)