Sfoglia il codice sorgente

bug fix previous value of a device

tags/v1.0.0
Dirk Alders 2 anni fa
parent
commit
47dbebb4b2
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      devices/__init__.py

+ 1
- 1
devices/__init__.py Vedi File

@@ -190,7 +190,7 @@ class base(dict):
190 190
         return "default warning text - replace parent warning_text function"
191 191
 
192 192
     def previous_value(self, key):
193
-        self.__previous__.get(key)
193
+        return self.__previous__.get(key)
194 194
 
195 195
 
196 196
 class shelly(base):

Loading…
Annulla
Salva