File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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-
214213def 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
You can’t perform that action at this time.
0 commit comments