Browse Source

fix package generation

Maxime Alves LIRMM@home 3 years ago
parent
commit
d1bc595e43
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      pyheatpump/cli.py

+ 2
- 2
pyheatpump/cli.py View File

@@ -173,8 +173,8 @@ def supervise(since):
173 173
         last_update = get_last_update()
174 174
     
175 175
     post_packets = [
176
-        Heatpump(mac_address, last_update, ['Analog']).__dict__()
177
-        Heatpump(mac_address, last_update, ['Digital']).__dict__()
176
+        Heatpump(mac_address, last_update, ['Analog']).__dict__(),
177
+        Heatpump(mac_address, last_update, ['Digital']).__dict__(),
178 178
         Heatpump(mac_address, last_update, ['Integer']).__dict__()
179 179
     ]
180 180
 

Loading…
Cancel
Save