Skip to content

Commit ea78b6b

Browse files
committed
uv run ruff check --fix
1 parent 93675e1 commit ea78b6b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/a2a/server/request_handlers/grpc_handler.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# ruff: noqa: N802
22
import contextlib
33
import logging
4+
45
from abc import ABC, abstractmethod
56
from collections.abc import AsyncIterable, Sequence
67

8+
79
try:
810
import grpc
911
import grpc.aio
12+
1013
from grpc.aio import Metadata
1114
except ImportError as e:
1215
raise ImportError(
@@ -16,6 +19,7 @@
1619
) from e
1720

1821
import a2a.grpc.a2a_pb2_grpc as a2a_grpc
22+
1923
from a2a import types
2024
from a2a.auth.user import UnauthenticatedUser
2125
from a2a.extensions.common import (
@@ -30,6 +34,7 @@
3034
from a2a.utils.errors import ServerError
3135
from a2a.utils.helpers import validate, validate_async_generator
3236

37+
3338
logger = logging.getLogger(__name__)
3439

3540
# For now we use a trivial wrapper on the grpc context object

0 commit comments

Comments
 (0)