From e90858e097993dfb457be1699335623218dc78a4 Mon Sep 17 00:00:00 2001 From: jmartinez-silabs <67972863+jmartinez-silabs@users.noreply.github.com> Date: Thu, 24 Jun 2021 13:51:06 -0400 Subject: [PATCH] Remove int cast from ParseValueWithType value argument (#7850) --- src/controller/python/chip-device-ctrl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/python/chip-device-ctrl.py b/src/controller/python/chip-device-ctrl.py index fef309e4a64a9a..05f66ce1fdb499 100755 --- a/src/controller/python/chip-device-ctrl.py +++ b/src/controller/python/chip-device-ctrl.py @@ -131,7 +131,7 @@ def FormatZCLArguments(args, command): raise ParsingError("Argument should in key=value format") key, value = kvPair.split("=", 1) valueType = command.get(key, None) - commandArgs[key] = ParseValueWithType(int(value), valueType) + commandArgs[key] = ParseValueWithType(value, valueType) return commandArgs