Skip to content

Commit 7e3331b

Browse files
committed
Remove unnecessary if TYPE_CHECKING
1 parent 89fc266 commit 7e3331b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pydantic_ai_slim/pydantic_ai/toolsets/combined.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from contextlib import AsyncExitStack
66
from dataclasses import dataclass
77
from types import TracebackType
8-
from typing import TYPE_CHECKING, Any
8+
from typing import Any
99

1010
from pydantic_core import SchemaValidator
1111
from typing_extensions import Self
@@ -16,9 +16,6 @@
1616
from . import AbstractToolset
1717
from ._run import RunToolset
1818

19-
if TYPE_CHECKING:
20-
pass
21-
2219

2320
@dataclass(init=False)
2421
class CombinedToolset(AbstractToolset[AgentDepsT]):

0 commit comments

Comments
 (0)