ruff: enable warning lints

This commit is contained in:
Jörg Thalheim
2024-10-23 10:20:43 +02:00
committed by Mic92
parent 4c4d4d07f0
commit 4230ae6750
15 changed files with 30 additions and 15 deletions

View File

@@ -51,7 +51,7 @@ def ssh(
cmd_args.insert(0, "torify")
cmd = nix_shell(packages, cmd_args)
subprocess.run(cmd)
subprocess.run(cmd, check=True)
def qrcode_scan(picture_file: str) -> str: