Skip to content

Commit 6b2f79a

Browse files
authored
Merge pull request #17 from dingusdk/set_time-fix
Set time fix
2 parents 96800cb + 8552867 commit 6b2f79a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ihcsdk/ihccontroller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def set_runtime_value_time(
139139
self, ihcid: int, hours: int, minutes: int, seconds: int
140140
) -> bool:
141141
"""Set time runtime value with re-authenticate if needed."""
142-
if self.client.set_runtime_value_time(ihcid, hours, minutes):
142+
if self.client.set_runtime_value_time(ihcid, hours, minutes, seconds):
143143
return True
144144
self.re_authenticate()
145145
return self.client.set_runtime_value_time(ihcid, hours, minutes, seconds)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name="ihcsdk",
7-
version="2.8.11",
7+
version="2.8.12",
88
description="IHC Python SDK",
99
long_description=(
1010
"SDK for connection to the LK IHC Controller. "

0 commit comments

Comments
 (0)