We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 475673f commit f951c93Copy full SHA for f951c93
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name="python-velbus",
5
- version="2.1.1",
+ version="2.1.2",
6
url="https://github.com/thomasdelaet/python-velbus",
7
license="MIT",
8
author="Thomas Delaet",
velbus/controller.py
@@ -171,7 +171,7 @@ def timeout_expired():
171
callback()
172
173
# 180 second timeout for loading modules
174
- self.load_timeout = threading.Timer(180, timeout_expired).start()
+ self.load_timeout = threading.Timer(360, timeout_expired).start()
175
for module in self._modules:
176
self._modules[module].load(module_loaded)
177
0 commit comments