Skip to content

Commit

Permalink
Bump API.
Browse files Browse the repository at this point in the history
  • Loading branch information
RenierM26 committed May 1, 2022
1 parent 9c892c6 commit f40d91d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions custom_components/ids_hyyp/manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"domain": "ids_hyyp",
"name": "IDS Hyyp(Beta)",
"version": "0.0.0.1",
"version": "0.0.0.2",
"documentation": "https://www.home-assistant.io/integrations/idshyyp",
"codeowners": ["@RenierM26"],
"requirements": ["pyhyypapi==0.0.0.2"],
"requirements": ["pyhyypapi==0.0.0.3"],
"config_flow": true,
"iot_class": "cloud_polling"
}
2 changes: 0 additions & 2 deletions custom_components/ids_hyyp/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ async def async_turn_on(self, **kwargs: Any) -> None:
self.coordinator.hyyp_client.set_zone_bypass,
self._partition_id,
self._zone_id,
0,
)

except (HTTPError, HyypApiError) as err:
Expand All @@ -81,7 +80,6 @@ async def async_turn_off(self, **kwargs: Any) -> None:
self.coordinator.hyyp_client.set_zone_bypass,
self._partition_id,
self._zone_id,
0,
)

except (HTTPError, HyypApiError) as err:
Expand Down

0 comments on commit f40d91d

Please sign in to comment.