Skip to content

Commit 2fb4be6

Browse files
committed
formatting
1 parent c6a121f commit 2fb4be6

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/a2a/server/apps/jsonrpc/jsonrpc_app.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import json
33
import logging
44
import traceback
5+
56
from abc import ABC, abstractmethod
67
from collections.abc import AsyncGenerator, Callable
78
from typing import TYPE_CHECKING, Any
@@ -51,6 +52,7 @@
5152
)
5253
from a2a.utils.errors import MethodNotImplementedError
5354

55+
5456
logger = logging.getLogger(__name__)
5557

5658
if TYPE_CHECKING:

src/a2a/server/apps/rest/rest_adapter.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import functools
22
import logging
3+
34
from collections.abc import AsyncIterable, AsyncIterator, Awaitable, Callable
45
from typing import TYPE_CHECKING, Any
56

7+
68
if TYPE_CHECKING:
79
from sse_starlette.sse import EventSourceResponse
810
from starlette.requests import Request
@@ -39,6 +41,7 @@
3941
)
4042
from a2a.utils.errors import InvalidRequestError, ServerError
4143

44+
4245
logger = logging.getLogger(__name__)
4346

4447

0 commit comments

Comments
 (0)