Browse Source

[variable] check if value is not none when casting

Maxime Alves LIRMM@home 3 years ago
parent
commit
30d0b72e7f
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      pyheatpump/models/variable.py

+ 2
- 1
pyheatpump/models/variable.py View File

@@ -97,7 +97,8 @@ class Variable(RowClass):
97 97
                 AND var.last_update > :since""",
98 98
             params)
99 99
 
100
-            if 'address' in row.keys() and 'value' in row.keys()
100
+            if 'address' in row.keys() and 'value' in row.keys() and
101
+                row['value'] is not None
101 102
         }
102 103
 
103 104
 

Loading…
Cancel
Save