File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed
Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -415,13 +415,6 @@ def temperature(self) -> float:
415415 Raises NodeError when temperature feature is not present at device.
416416 """
417417
418- @property
419- def auto_join (self ) -> bool :
420- """Last received auto_join state.
421-
422- Raises NodeError when circleplus feature is not present at device.
423- """
424-
425418 # endregion
426419
427420 # region control
Original file line number Diff line number Diff line change 22
33from __future__ import annotations
44
5- from abc import ABC
65from asyncio import Task , create_task
76from collections .abc import Awaitable , Callable
87from dataclasses import replace
@@ -73,7 +72,7 @@ def decorated(*args: Any, **kwargs: Any) -> Any:
7372 return cast (FuncT , decorated )
7473
7574
76- class PlugwiseCircle (PlugwiseBaseNode , ABC ):
75+ class PlugwiseCircle (PlugwiseBaseNode ):
7776 """Plugwise Circle node."""
7877
7978 def __init__ (
You can’t perform that action at this time.
0 commit comments