Skip to content

Commit

Permalink
Remove redundant exception argument in logging.exception
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
anitacaron and coderabbitai[bot] authored Oct 14, 2024
1 parent eeab021 commit d37bf34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def robot_prepare_ontology(
try:
check_call(callstring)
except subprocess.CalledProcessError as e:
logging.exception("Preparing %s for dashboard failed: %s", o_path, str(e))
logging.exception("Preparing %s for dashboard failed", o_path)

def count_up(dictionary, value):
if value not in dictionary:
Expand Down

0 comments on commit d37bf34

Please sign in to comment.