From 41a2d3012831c9ab6ea097f3369f39d08e3323dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20B=C3=B6ck?= <990588+hannob@users.noreply.github.com> Date: Thu, 25 Jul 2024 14:30:26 +0200 Subject: [PATCH] remove unnecessary quotes (ruff warning FURB105) --- snallygaster | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snallygaster b/snallygaster index 01bf038..0c95382 100755 --- a/snallygaster +++ b/snallygaster @@ -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)