Compare commits

...

2 Commits
main ... v0.12

Author SHA1 Message Date
Andre Basche 84000fb76c Bump version 2023-06-10 06:50:11 +02:00
Andre Basche 26528a7310 Don't send optional program rules 2023-06-10 06:49:45 +02:00
3 changed files with 7 additions and 1 deletions

5
pyhon/appliances/wc.py Normal file
View File

@ -0,0 +1,5 @@
from pyhon.appliances.base import ApplianceBase
class Appliance(ApplianceBase):
pass

View File

@ -111,6 +111,7 @@ class HonCommand:
async def send(self) -> bool:
params = self.parameter_groups.get("parameters", {})
ancillary_params = self.parameter_groups.get("ancillaryParameters", {})
ancillary_params.pop("programRules", None)
self.appliance.sync_to_params(self.name)
result = await self.api.send_command(
self._appliance, self._name, params, ancillary_params

View File

@ -7,7 +7,7 @@ with open("README.md", "r") as f:
setup(
name="pyhOn",
version="0.12.3",
version="0.12.4",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,