Skip to content

Commit de715a1

Browse files
committed
cleanup test changes for auto-join implementation
1 parent 5f03a5f commit de715a1

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

plugwise_usb/api.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff 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

plugwise_usb/nodes/circle.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from __future__ import annotations
44

5-
from abc import ABC
65
from asyncio import Task, create_task
76
from collections.abc import Awaitable, Callable
87
from 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__(

0 commit comments

Comments
 (0)