Skip to content

Commit 5d483c3

Browse files
committed
Fix
1 parent cdcbd44 commit 5d483c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ async def set_dhw_mode(self, mode: str) -> None:
826826
async def set_temperature_offset(self, dev_id: str, offset: float) -> None:
827827
"""Set the temperature offset for thermostats that support this feature."""
828828

829-
uri = f"{APPLIANCES};id={dev_id}/offset;type=temperature_offset
829+
uri = f"{APPLIANCES};id={dev_id}/offset;type=temperature_offset"
830830
data = f"<offset_functionality><offset>{offset}</offset></offset_functionality>"
831831

832832
await self._request(uri, method="put", data=data)

0 commit comments

Comments
 (0)