Skip to content

Commit 63a465c

Browse files
authored
Fix argument parsing for 'fc' in ioprox
1 parent 1a09fba commit 63a465c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

software/script/chameleon_cli_unit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6385,7 +6385,7 @@ def on_exec(self, args: argparse.Namespace):
63856385

63866386
elif t == "ioprox":
63876387
ver = args.ver if args.ver is not None else 1
6388-
fc = int(args.fc, 0) if args.fc is not None else 0
6388+
fc = int(args.fc) if args.fc is not None else 0
63896389
cn = args.cn if args.cn is not None else 0
63906390
if args.raw8 is not None:
63916391
raw8 = LFIOProxIdArgsUnit.parse_raw8(args.raw8)

0 commit comments

Comments
 (0)