Skip to content

Commit 681a49f

Browse files
committed
fix(lint): fix import order in card_resolver.py (I001)
Move pydantic import to correct position per project isort config
1 parent 8a434d8 commit 681a49f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/a2a/client/card_resolver.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
import httpx
88

9+
from pydantic import ValidationError
10+
911
from a2a.client.errors import (
1012
A2AClientHTTPError,
1113
A2AClientJSONError,
@@ -18,7 +20,6 @@
1820
A2ASSRFValidationError,
1921
validate_agent_card_url,
2022
)
21-
from pydantic import ValidationError
2223

2324

2425
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)