Skip to content

Commit 49eb498

Browse files
committed
Formatting
1 parent b36d376 commit 49eb498

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tests/server/tasks/test_database_push_notification_config_store.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import pytest
66

7+
78
# Skip entire test module if SQLAlchemy is not installed
89
pytest.importorskip('sqlalchemy', reason='Database tests require SQLAlchemy')
910
pytest.importorskip(
@@ -14,14 +15,14 @@
1415
import pytest_asyncio
1516

1617
from _pytest.mark.structures import ParameterSet
18+
19+
# Now safe to import SQLAlchemy-dependent modules
20+
from cryptography.fernet import Fernet
1721
from sqlalchemy import select
1822
from sqlalchemy.ext.asyncio import (
1923
async_sessionmaker,
2024
create_async_engine,
2125
)
22-
23-
# Now safe to import SQLAlchemy-dependent modules
24-
from cryptography.fernet import Fernet
2526
from sqlalchemy.inspection import inspect
2627

2728
from a2a.server.models import (

tests/server/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
)
4848
from a2a.utils import (
4949
AGENT_CARD_WELL_KNOWN_PATH,
50-
PREV_AGENT_CARD_WELL_KNOWN_PATH,
5150
EXTENDED_AGENT_CARD_PATH,
51+
PREV_AGENT_CARD_WELL_KNOWN_PATH,
5252
)
5353
from a2a.utils.errors import MethodNotImplementedError
5454

0 commit comments

Comments
 (0)