Skip to content

Commit 49dc6f4

Browse files
move type ignore
1 parent 13da396 commit 49dc6f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sentry_sdk/integrations/pydantic_ai/spans/ai_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
from typing import Any
2626

2727
try:
28-
from pydantic_ai.messages import (
28+
from pydantic_ai.messages import ( # type: ignore
2929
BaseToolCallPart,
3030
TextPart,
31-
) # type: ignore
31+
)
3232
except ImportError:
3333
# Fallback if these classes are not available
3434
BaseToolCallPart = None

0 commit comments

Comments
 (0)