Skip to content

Commit 2a32aeb

Browse files
committed
Support python 3.9 for thee -- not for me
1 parent 6770ee4 commit 2a32aeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydantic_ai_slim/pydantic_ai/toolsets/abstract.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
from abc import ABC, abstractmethod
44
from dataclasses import dataclass
5-
from typing import TYPE_CHECKING, Any, Callable, Generic, Literal, Protocol, TypeAlias
5+
from typing import TYPE_CHECKING, Any, Callable, Generic, Literal, Protocol
66

77
from pydantic_core import SchemaValidator
8-
from typing_extensions import Self
8+
from typing_extensions import Self, TypeAlias
99

1010
from .._run_context import AgentDepsT, RunContext
1111
from ..tools import ToolDefinition, ToolsPrepareFunc

0 commit comments

Comments
 (0)