Skip to content

Commit

Permalink
Fix many linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-grafberger committed Feb 24, 2024
1 parent 4aebf99 commit 0defb91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mlinspect/monkeypatching/_monkey_patching_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,9 @@ def get_input_info(df_object, caller_filename, lineno, function_info, optional_c
code_reference = f"({optional_source_code})"
else:
code_reference = ""
description = f"Warning! Operator {caller_filename}:{lineno} {code_reference} encountered a DataFrame resulting from an operation " \
"without mlinspect support!"
description = f"Warning! Operator {caller_filename}:{lineno} {code_reference} encountered a " \
f"DataFrame resulting from an operation " \
f"without mlinspect support!"
missing_op_id = singleton.get_next_missing_op_id()
input_dag_node = DagNode(missing_op_id,
BasicCodeLocation(caller_filename, lineno),
Expand Down

0 comments on commit 0defb91

Please sign in to comment.