Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## v0.40.0 (a22)

- Correcting messageflow to HA
- Correcting messageflow to HA

## v0.40.0 (a4)

Expand Down
9 changes: 0 additions & 9 deletions plugwise_usb/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Plugwise USB-Stick API."""

from collections.abc import Awaitable, Callable
from dataclasses import dataclass
from datetime import datetime
from enum import Enum, auto
Expand Down Expand Up @@ -230,14 +229,6 @@ class EnergyStatistics:
class PlugwiseNode(Protocol):
"""Protocol definition of a Plugwise device node."""

def __init__(
self,
mac: str,
address: int,
loaded_callback: Callable[[NodeEvent, str], Awaitable[None]],
) -> None:
"""Initialize plugwise node object."""

# region Generic node properties
@property
def features(self) -> tuple[NodeFeature, ...]:
Expand Down
2 changes: 1 addition & 1 deletion plugwise_usb/connection/receiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ async def _notify_node_response_subscribers(

self._node_subscription_lock.release()
if len(notify_tasks) > 0:
_LOGGER.debug("Received %s %s", node_response, node_response.seq_id)
_LOGGER.info("Received %s %s", node_response, node_response.seq_id)
if node_response.seq_id not in BROADCAST_IDS:
self._last_processed_messages.append(node_response.seq_id)
# Limit tracking to only the last appended request (FIFO)
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 = "v0.40.0a22"
version = "v0.40.0a26"
license = {file = "LICENSE"}
description = "Plugwise USB (Stick) module for Python 3."
readme = "README.md"
Expand Down
Loading