Merge remote-tracking branch 'origin/main'
# Conflicts: # pyhon/appliance.py
This commit is contained in:
commit
a68dcac379
@ -175,7 +175,9 @@ class HonAppliance:
|
|||||||
def parameters(self):
|
def parameters(self):
|
||||||
result = {}
|
result = {}
|
||||||
for name, command in self._commands.items():
|
for name, command in self._commands.items():
|
||||||
for key, parameter in (command.parameters | command.ancillary_parameters).items():
|
for key, parameter in (
|
||||||
|
command.parameters | command.ancillary_parameters
|
||||||
|
).items():
|
||||||
result.setdefault(name, {})[key] = parameter.value
|
result.setdefault(name, {})[key] = parameter.value
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
@ -61,7 +61,8 @@ class Hon:
|
|||||||
async def setup(self) -> None:
|
async def setup(self) -> None:
|
||||||
appliance: Dict
|
appliance: Dict
|
||||||
for appliance in (await self.api.load_appliances())["payload"]["appliances"]:
|
for appliance in (await self.api.load_appliances())["payload"]["appliances"]:
|
||||||
for zone in range(int(appliance.get("zone", "0"))):
|
if (zones := int(appliance.get("zone", "0"))) > 1:
|
||||||
|
for zone in range(zones):
|
||||||
await self._create_appliance(appliance.copy(), zone=zone + 1)
|
await self._create_appliance(appliance.copy(), zone=zone + 1)
|
||||||
await self._create_appliance(appliance)
|
await self._create_appliance(appliance)
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ with open("README.md", "r") as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pyhOn",
|
name="pyhOn",
|
||||||
version="0.8.0b4",
|
version="0.8.0b5",
|
||||||
author="Andre Basche",
|
author="Andre Basche",
|
||||||
description="Control hOn devices with python",
|
description="Control hOn devices with python",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
Loading…
Reference in New Issue
Block a user