From efbf79e497beef2068df145a76f0e934f01361c6 Mon Sep 17 00:00:00 2001 From: Adrian Yee Date: Thu, 30 Oct 2025 16:53:33 -0700 Subject: [PATCH] Fix HIDProx formatting with `hw slot list` Fix HIDProx formatting to match the formatting of all other card types. --- software/script/chameleon_cli_unit.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/software/script/chameleon_cli_unit.py b/software/script/chameleon_cli_unit.py index b2c47e1..02f1454 100644 --- a/software/script/chameleon_cli_unit.py +++ b/software/script/chameleon_cli_unit.py @@ -3382,12 +3382,12 @@ class HWSlotList(DeviceRequiredUnit): cn = (cn1 << 32) + cn2 print(f" {'Format:':40}{color_string((CY, HIDFormat(format)))}") if fc > 0: - print(f" FC: {color_string((CG, fc))}") + print(f" {'FC:':40}{color_string((CG, fc))}") if il > 0: - print(f" IL: {color_string((CG, il))}") + print(f" {'IL:':40}{color_string((CG, il))}") if oem > 0: - print(f" OEM: {color_string((CG, oem))}") - print(f" CN: {color_string((CG, cn))}") + print(f" {'OEM:':40}{color_string((CG, oem))}") + print(f" {'CN:':40}{color_string((CG, cn))}") if lf_tag_type == TagSpecificType.Viking: id = self.cmd.viking_get_emu_id() print(f" {'ID:':40}{color_string((CY, id.hex().upper()))}")