ihcsdk 2.8.8__tar.gz → 2.8.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ihcsdk might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ihcsdk
3
- Version: 2.8.8
3
+ Version: 2.8.9
4
4
  Summary: IHC Python SDK
5
5
  Home-page: https://github.com/dingusdk/PythonIhcSdk
6
6
  Author: Jens Nielsen
@@ -356,7 +356,7 @@ class IHCSoapClient:
356
356
  case "WSBooleanValue":
357
357
  result = resource_value.find("./ns2:value", IHCSoapClient.ihcns).text == "true"
358
358
  case "WSIntegerValue":
359
- result = resource_value.find("./ns2:integer", IHCSoapClient.ihcns).text
359
+ result = int( resource_value.find("./ns2:integer", IHCSoapClient.ihcns).text)
360
360
  case "WSFloatingPointValue":
361
361
  result = round(float(resource_value.find("./ns2:floatingPointValue", IHCSoapClient.ihcns).text), 2)
362
362
  case "WSEnumValue":
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ihcsdk
3
- Version: 2.8.8
3
+ Version: 2.8.9
4
4
  Summary: IHC Python SDK
5
5
  Home-page: https://github.com/dingusdk/PythonIhcSdk
6
6
  Author: Jens Nielsen
@@ -6,7 +6,7 @@ from setuptools import setup
6
6
 
7
7
  setup(
8
8
  name="ihcsdk",
9
- version="2.8.8",
9
+ version="2.8.9",
10
10
  description="IHC Python SDK",
11
11
  long_description=(
12
12
  "SDK for connection to the LK IHC Controller. "
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes