Skip to content

Commit 396ec84

Browse files
committed
fix: add type ignore to builtins ExceptionGroup import
- CI pyright version updated and now reports ExceptionGroup as unknown import - Add type ignore comment to both import paths for compatibility - Resolves CI type checking errors
1 parent 4f47dc2 commit 396ec84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/shared/test_streamable_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from typing import Any
1313

1414
try:
15-
from builtins import ExceptionGroup
15+
from builtins import ExceptionGroup # type: ignore
1616
except ImportError:
1717
from exceptiongroup import ExceptionGroup # type: ignore
1818

0 commit comments

Comments
 (0)