Skip to content

Commit 90abe79

Browse files
committed
ruff format fix
1 parent bb2c0ba commit 90abe79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/a2a/server/tasks/database_push_notification_config_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def __init__(
9494

9595
if encryption_key:
9696
try:
97-
from cryptography.fernet import Fernet # noqa: PLC0415
97+
from cryptography.fernet import Fernet
9898
except ImportError as e:
9999
raise ImportError(
100100
"DatabasePushNotificationConfigStore with encryption requires the 'cryptography' "
@@ -166,7 +166,7 @@ def _from_orm(
166166
payload = model_instance.config_data
167167

168168
if self._fernet:
169-
from cryptography.fernet import InvalidToken # noqa: PLC0415
169+
from cryptography.fernet import InvalidToken
170170

171171
try:
172172
decrypted_payload = self._fernet.decrypt(payload)

0 commit comments

Comments
 (0)