We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd7f574 commit e97d140Copy full SHA for e97d140
plugwise_usb/nodes/circle_plus.py
@@ -85,16 +85,6 @@ async def load(self) -> bool:
85
await self._loaded_callback(NodeEvent.LOADED, self.mac)
86
return True
87
88
- @raise_not_loaded
89
- async def initialize(self) -> bool:
90
- """Initialize node."""
91
- if self._initialized:
92
- return True
93
- if not await self.realtime_clock_synchronize():
94
- self._initialized = False
95
- return False
96
- return await super().initialize()
97
-
98
async def clock_synchronize(self) -> bool:
99
"""Synchronize realtime clock. Returns true if successful."""
100
clock_response: CirclePlusRealTimeClockResponse | None = (
0 commit comments