Fix error in lf em 410x read from color_string()

Fix bug in color_string() usage introduced by 35d2f40 (bug #295).
This commit is contained in:
Adrian Yee
2025-10-30 16:41:12 -07:00
committed by GitHub
parent 97dfe5b9a4
commit 7efde79235
+1 -1
View File
@@ -3135,7 +3135,7 @@ class LFEMRead(ReaderRequiredUnit):
def on_exec(self, args: argparse.Namespace):
data = self.cmd.em410x_scan()
print(color_string((TagSpecificType(data[0])), (CG, data[1].hex())))
print(f"{TagSpecificType(data[0])}: {color_string((CG, data[1].hex()))}")
@lf_em_410x.command('write')