Skip to content

Commit

Permalink
fix: undo accidental xsslint false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
kdmccormick committed Jan 27, 2025
1 parent 8456644 commit 1c3eab9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ def _to_json_friendly_repr(value: object, debug_key: str) -> object:
else:
if qualname == "<lambda>":
# Handle lambdas by printing the source lines
return "<lambda> defined with line(s): " + inspect.getsource(value).strip()
return "lambda defined with line(s): " + inspect.getsource(value).strip()
# For all other objects, print the repr
return repr(value)

0 comments on commit 1c3eab9

Please sign in to comment.