Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions plugwise_usb/nodes/circle_plus.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ async def load(self) -> bool:
NodeFeature.RELAY_LOCK,
NodeFeature.ENERGY,
NodeFeature.POWER,
NodeFeature.CIRCLE,
NodeFeature.CIRCLEPLUS,
),
)
Expand Down Expand Up @@ -76,6 +77,7 @@ async def load(self) -> bool:
NodeFeature.RELAY_LOCK,
NodeFeature.ENERGY,
NodeFeature.POWER,
NodeFeature.CIRCLE,
NodeFeature.CIRCLEPLUS,
),
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "plugwise_usb"
version = "0.44.4"
version = "0.44.5a0"
license = "MIT"
keywords = ["home", "automation", "plugwise", "module", "usb"]
classifiers = [
Expand Down
1 change: 1 addition & 0 deletions tests/test_usb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2484,6 +2484,7 @@ async def test_node_discovery_and_load( # noqa: PLR0915
assert sorted(state[pw_api.NodeFeature.INFO].features) == sorted(
(
pw_api.NodeFeature.AVAILABLE,
pw_api.NodeFeature.CIRCLE,
pw_api.NodeFeature.CIRCLEPLUS,
pw_api.NodeFeature.INFO,
pw_api.NodeFeature.PING,
Expand Down
Loading