Skip to content

Commit 7cce48a

Browse files
committed
Remove TypeAlias
1 parent 4c78acd commit 7cce48a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/a2a/utils/telemetry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def internal_method(self):
5959
import logging
6060

6161
from collections.abc import Callable
62-
from typing import Any, TypeAlias
62+
from typing import Any
6363

6464

6565
logger = logging.getLogger(__name__)
@@ -94,7 +94,7 @@ def __getattr__(self, name: str) -> '_NoOp':
9494
_SpanKind = _NoOp()
9595
StatusCode = _NoOp()
9696

97-
SpanKind: TypeAlias = _SpanKind
97+
SpanKind = _SpanKind
9898
__all__ = ['SpanKind']
9999

100100
INSTRUMENTING_MODULE_NAME = 'a2a-python-sdk'

0 commit comments

Comments
 (0)