add trailing commas

Signed-off-by: florian on nixos (Florian Brandes) <florian.brandes@posteo.de>
This commit is contained in:
florian on nixos (Florian Brandes)
2022-03-24 21:26:30 +01:00
committed by Florian Brandes
parent 0c1e8edeca
commit 11c34e496a
2 changed files with 9 additions and 9 deletions

View File

@@ -86,7 +86,7 @@ def barcode_reader(image) -> list:
if barcode.data != "":
barcodes = barcodes + [str(barcode.data)]
logger.debug(
f"Barcode of type {str(barcode.type)} found: {str(barcode.data)}"
f"Barcode of type {str(barcode.type)} found: {str(barcode.data)}",
)
return barcodes