Преглед на файлове

Event: include extra_state_attributes properly

extra_state_attributes is a cached_property, not a function call.

Issue #1578
Jason Rumney преди 2 години
родител
ревизия
ddd3db7f48
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      custom_components/tuya_local/event.py

+ 1 - 1
custom_components/tuya_local/event.py

@@ -60,5 +60,5 @@ class TuyaLocalEvent(TuyaLocalEntity, EventEntity):
             if value is not None:
                 self._trigger_event(
                     value,
-                    self.extra_state_attributes(),
+                    self.extra_state_attributes,
                 )