From 63a465ce9b5efabebbc6499c6ed88e3909dccfec Mon Sep 17 00:00:00 2001 From: Niel Nielsen Date: Sun, 12 Apr 2026 20:10:36 +0200 Subject: [PATCH] Fix argument parsing for 'fc' in ioprox --- software/script/chameleon_cli_unit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/script/chameleon_cli_unit.py b/software/script/chameleon_cli_unit.py index 204e56e..8b99832 100644 --- a/software/script/chameleon_cli_unit.py +++ b/software/script/chameleon_cli_unit.py @@ -6385,7 +6385,7 @@ class LFT55xxClone(ReaderRequiredUnit): elif t == "ioprox": ver = args.ver if args.ver is not None else 1 - fc = int(args.fc, 0) if args.fc is not None else 0 + fc = int(args.fc) if args.fc is not None else 0 cn = args.cn if args.cn is not None else 0 if args.raw8 is not None: raw8 = LFIOProxIdArgsUnit.parse_raw8(args.raw8)