Skip to content

Commit b375e26

Browse files
committed
CR: make function type explicit
1 parent 27be406 commit b375e26

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugwise_usb/network/registry.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ def __init__(
4646
self._registry: list[str] = []
4747
self._first_free_address: int = 65
4848
self._registration_task: Task[None] | None = None
49-
self._start_node_discover: Callable[[], Awaitable[None]] | None = None
49+
self._start_node_discover: (
50+
Callable[[str, NodeType | None, bool], Awaitable[None]] | None
51+
) = None
5052
self._full_scan_finished: Callable[[], Awaitable[None]] | None = None
5153
self._registration_scan_delay: float = CIRCLEPLUS_SCANREQUEST_MAINTENANCE
5254
self._scan_completed = False

0 commit comments

Comments
 (0)