Skip to content

Commit 263cfcd

Browse files
committed
Formatting
1 parent 3835d15 commit 263cfcd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/a2a/client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async def send_message_streaming(
113113
request: SendStreamingMessageRequest,
114114
*,
115115
http_kwargs: dict[str, Any] | None = None,
116-
) -> AsyncGenerator[SendStreamingMessageResponse, None]:
116+
) -> AsyncGenerator[SendStreamingMessageResponse]:
117117
if not request.id:
118118
request.id = str(uuid4())
119119

src/a2a/utils/telemetry.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,11 @@ def sync_wrapper(*args, **kwargs):
210210
return async_wrapper if is_async_func else sync_wrapper
211211

212212

213-
214213
def trace_class(
215214
include_list: list[str] = None,
216215
exclude_list: list[str] = None,
217216
kind=SpanKind.INTERNAL,
218217
):
219-
220218
"""A class decorator to automatically trace specified methods of a class.
221219
222220
This decorator iterates over the methods of a class and applies the

0 commit comments

Comments
 (0)