Skip to content

Commit

Permalink
remove unnecessary quotes (ruff warning FURB105)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannob committed Jul 25, 2024
1 parent ff6a097 commit 41a2d30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snallygaster
Original file line number Diff line number Diff line change
Expand Up @@ -947,10 +947,10 @@ def new_excepthook(etype, value, traceback):

print("Oh oh... an unhandled exception has happened. This shouldn't be.")
print("Please report a bug and include all output.")
print("")
print()
print("called with")
print(" ".join(sys.argv))
print("")
print()
sys.__excepthook__(etype, value, traceback)


Expand Down

0 comments on commit 41a2d30

Please sign in to comment.