Skip to content

Commit 2be4832

Browse files
committed
Improve
1 parent 7288f34 commit 2be4832

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

plugwise/legacy/smile.py

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -257,25 +257,19 @@ async def _set_groupswitch_member_state(
257257
await self._request(uri, method="put", data=data)
258258

259259
async def set_number_setpoint(self, key: str, temperature: float) -> None:
260-
"""Set the max. Boiler or DHW setpoint on the Central Heating boiler."""
261-
pass # pragma: no cover
260+
"""Placeholder, function is not used for legacy devices."""
262261

263262
async def set_temperature_offset(self, dev_id: str, offset: float) -> None:
264-
"""Set the Temperature offset for thermostats that support this feature."""
265-
pass # pragma: no cover
263+
"""Placeholder, function is not used for legacy devices."""
266264

267265
async def set_gateway_mode(self, mode: str) -> None:
268-
"""Set the gateway mode."""
269-
pass # pragma: no cover
266+
"""Placeholder, function is not used for legacy devices."""
270267

271268
async def set_regulation_mode(self, mode: str) -> None:
272-
"""Set the heating regulation mode."""
273-
pass # pragma: no cover
269+
"""Placeholder, function is not used for legacy devices."""
274270

275271
async def set_dhw_mode(self, mode: str) -> None:
276-
"""Set the domestic hot water heating regulation mode."""
277-
pass # pragma: no cover
272+
"""Placeholder, function is not used for legacy devices."""
278273

279274
async def delete_notification(self) -> None:
280-
"""Delete the active Plugwise Notification."""
281-
pass # pragma: no cover
275+
"""Placeholder, function is not used for legacy devices."""

0 commit comments

Comments
 (0)