We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d671c20 commit 8ce6ed1Copy full SHA for 8ce6ed1
src/humanloop/overload.py
@@ -203,7 +203,7 @@ def overload_client(
203
"""Overloads client methods to add tracing, local file handling, and evaluation context."""
204
# Store original log method as _log for all clients. Used in flow decorator
205
if hasattr(client, "log") and not hasattr(client, "_log"):
206
- client._log = client.log # type: ignore[attr-defined, union]
+ client._log = client.log # type: ignore[attr-defined, union-attr]
207
208
# Create a closure to capture sync_client and use_local_files
209
def log_wrapper(self: Any, **kwargs) -> LogResponseType:
0 commit comments