diff options
author | Pablo MartÃnez <58857054+elpekenin@users.noreply.github.com> | 2024-11-21 07:16:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-21 17:16:46 +1100 |
commit | 88afd53b1fb4183195ac5ee9d1d1c9506de3814e (patch) | |
tree | af3c29726f93ddf6ef69bbd0125c1e2984ead405 /lib/python/qmk/cli/painter/convert_graphics.py | |
parent | 9c865839819bf9ec3ed573354a53bcbe905080f7 (diff) |
[CLI] Refactor painter arguments to table instead of commandline (#24456)
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'lib/python/qmk/cli/painter/convert_graphics.py')
-rw-r--r-- | lib/python/qmk/cli/painter/convert_graphics.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/qmk/cli/painter/convert_graphics.py b/lib/python/qmk/cli/painter/convert_graphics.py index 553c26aa5d..f74d655fd5 100644 --- a/lib/python/qmk/cli/painter/convert_graphics.py +++ b/lib/python/qmk/cli/painter/convert_graphics.py @@ -60,9 +60,7 @@ def painter_convert_graphics(cli): return # Work out the text substitutions for rendering the output data - args_str = " ".join((f"--{arg} {getattr(cli.args, arg.replace('-', '_'))}" for arg in ["input", "output", "format", "no-rle", "no-deltas"])) - command = f"qmk painter-convert-graphics {args_str}" - subs = generate_subs(cli, out_bytes, image_metadata=metadata, command=command) + subs = generate_subs(cli, out_bytes, image_metadata=metadata, command_name="painter_convert_graphics") # Render and write the header file header_text = render_header(subs) |