Skip to content

Commit 288b74f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent fc37961 commit 288b74f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/labelle/cli/cli.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,8 +520,11 @@ def flush_all():
520520
QrRenderEngine(qr_callback("\n".join(accumulator)))
521521
)
522522
elif accumulator_type == "barcode":
523-
barcode_type = BarcodeType(accumulator_options[0].lower()) \
524-
if accumulator_options else DEFAULT_BARCODE_TYPE
523+
barcode_type = (
524+
BarcodeType(accumulator_options[0].lower())
525+
if accumulator_options
526+
else DEFAULT_BARCODE_TYPE
527+
)
525528
render_engines.append(
526529
BarcodeRenderEngine("\n".join(accumulator), barcode_type)
527530
)

0 commit comments

Comments
 (0)