We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc37961 commit 288b74fCopy full SHA for 288b74f
src/labelle/cli/cli.py
@@ -520,8 +520,11 @@ def flush_all():
520
QrRenderEngine(qr_callback("\n".join(accumulator)))
521
)
522
elif accumulator_type == "barcode":
523
- barcode_type = BarcodeType(accumulator_options[0].lower()) \
524
- if accumulator_options else DEFAULT_BARCODE_TYPE
+ barcode_type = (
+ BarcodeType(accumulator_options[0].lower())
525
+ if accumulator_options
526
+ else DEFAULT_BARCODE_TYPE
527
+ )
528
render_engines.append(
529
BarcodeRenderEngine("\n".join(accumulator), barcode_type)
530
0 commit comments