ruff: also enforce variable naming rules

This commit is contained in:
Jörg Thalheim
2023-08-27 10:51:47 +02:00
parent 9913a95cc2
commit b7212b9988
4 changed files with 8 additions and 8 deletions

View File

@@ -33,7 +33,7 @@ def ssh(
subprocess.run(cmd)
def qrcode_scan(pictureFile: str) -> str:
def qrcode_scan(picture_file: str) -> str:
return (
subprocess.run(
nix_shell(
@@ -42,7 +42,7 @@ def qrcode_scan(pictureFile: str) -> str:
"zbarimg",
"--quiet",
"--raw",
pictureFile,
picture_file,
],
),
stdout=subprocess.PIPE,