Explorar el Código

bug fix previous value of a device

tags/v1.0.0
Dirk Alders hace 2 años
padre
commit
47dbebb4b2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      devices/__init__.py

+ 1
- 1
devices/__init__.py Ver fichero

@@ -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…
Cancelar
Guardar