Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
topherinternational committed Dec 20, 2023
1 parent e6848b2 commit 53914cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pylint_airflow/checkers/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def invalidname(): print("dosomething")
try:
task_parameters = get_task_parameters_from_assign(node)
except ValueError as val_err:
logging.warning("Task assignment expression could not be analyzed\n%s", ve)
logging.warning("Task assignment expression could not be analyzed\n%s", val_err)
else:
self.check_operator_varname_versus_task_id(node, task_parameters)
self.check_callable_name_versus_task_id(node, task_parameters)
Expand Down

0 comments on commit 53914cc

Please sign in to comment.