From e383b7a3978cd6ebae1a51e1bcf2005e6b9c9bdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benito=20L=C3=B3pez?= Date: Fri, 21 Feb 2025 10:59:43 +0100 Subject: [PATCH] Fix wrong font choices (#676) Co-authored-by: Patrick Kanzler <4189642+patkan@users.noreply.github.com> --- src/escpos/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/escpos/cli.py b/src/escpos/cli.py index 92d11ed..9c274d7 100644 --- a/src/escpos/cli.py +++ b/src/escpos/cli.py @@ -373,7 +373,7 @@ ESCPOS_COMMANDS: List[Dict[str, Any]] = [ { "option_strings": ("--font",), "help": "Font choice", - "choices": ["left", "center", "right"], + "choices": ["A", "B"], }, { "option_strings": ("--text_type",),