From 4406788aef3fda1b909bd030bcbe908171d5af15 Mon Sep 17 00:00:00 2001 From: Niel Nielsen Date: Wed, 15 Apr 2026 14:45:41 +0200 Subject: [PATCH] BUG: reverted bug that was reintroduced --- 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 466aecb..f2a2db3 100644 --- a/software/script/chameleon_cli_unit.py +++ b/software/script/chameleon_cli_unit.py @@ -6154,7 +6154,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)