You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: instrumentation-genai/opentelemetry-instrumentation-langchain/src/opentelemetry/instrumentation/langchain/__init__.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -109,14 +109,14 @@ def __init__(
109
109
def__call__(
110
110
self,
111
111
wrapped: Callable[..., None],
112
-
instance: BaseCallbackHandler,
112
+
instance: BaseCallbackHandler,# type: ignore
113
113
args: tuple[Any, ...],
114
114
kwargs: dict[str, Any],
115
115
):
116
116
wrapped(*args, **kwargs)
117
117
# Ensure our OTel callback is present if not already.
Copy file name to clipboardExpand all lines: instrumentation-genai/opentelemetry-instrumentation-langchain/src/opentelemetry/instrumentation/langchain/callback_handler.py
0 commit comments