We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a7352 commit 38f75fbCopy full SHA for 38f75fb
2 files changed
ihcsdk/ihcclient.py
@@ -355,8 +355,8 @@ def __get_value(resource_value):
355
"WSIntegerValue": lambda v: int(
356
v.find("./ns2:integer", IHCSoapClient.ihcns).text
357
),
358
- "WSFloatingPointValue": lambda v: float(
359
- v.find("./ns2:floatingPointValue", IHCSoapClient.ihcns).text
+ "WSFloatingPointValue": lambda v: round(
+ float( v.find("./ns2:floatingPointValue", IHCSoapClient.ihcns).text),2
360
361
"WSEnumValue": lambda v: v.find("./ns2:enumName", IHCSoapClient.ihcns).text,
362
"WSTimerValue": lambda v: int(
setup.py
@@ -5,7 +5,7 @@
5
6
setup(
7
name="ihcsdk",
8
- version="2.8.4",
+ version="2.8.5",
9
description="IHC Python SDK",
10
long_description=(
11
"SDK for connection to the LK IHC Controller. "
0 commit comments