ruff: Fix FURB105 Unnecessary empty string passed to print.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-06-30 14:27:42 -04:00
committed by Tim Abbott
parent 5ac6d671fc
commit 6a73006723
11 changed files with 15 additions and 15 deletions

View File

@@ -82,7 +82,7 @@ mypy_args += ["--", *python_files, *pyi_files]
rc = subprocess.call([mypy_command, *mypy_args])
if rc != 0:
print("")
print()
print("See https://zulip.readthedocs.io/en/latest/testing/mypy.html for debugging tips.")
sys.exit(rc)