ソースを参照

bug fix previous value of a device

tags/v1.0.0
Dirk Alders 2年前
コミット
47dbebb4b2
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      devices/__init__.py

+ 1
- 1
devices/__init__.py ファイルの表示

@@ -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):

読み込み中…
キャンセル
保存