Skip to content

Commit 8ce6ed1

Browse files
author
Andrei Bratu
committed
linting
1 parent d671c20 commit 8ce6ed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/humanloop/overload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def overload_client(
203203
"""Overloads client methods to add tracing, local file handling, and evaluation context."""
204204
# Store original log method as _log for all clients. Used in flow decorator
205205
if hasattr(client, "log") and not hasattr(client, "_log"):
206-
client._log = client.log # type: ignore[attr-defined, union]
206+
client._log = client.log # type: ignore[attr-defined, union-attr]
207207

208208
# Create a closure to capture sync_client and use_local_files
209209
def log_wrapper(self: Any, **kwargs) -> LogResponseType:

0 commit comments

Comments
 (0)