Skip to content

Commit

Permalink
Merge pull request #6 from RobertD502/api_change_fix
Browse files Browse the repository at this point in the history
Fix broken cat query operation
  • Loading branch information
RobertD502 authored Dec 27, 2023
2 parents 25c715b + 39baa09 commit d47e3ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions custom_components/purrsong/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ async def _async_update_data(self) -> LavviebotData:
try:
data = await self.client.async_get_data()
except LavviebotAuthError as error:
raise ConfigEntryAuthFailed from error
raise ConfigEntryAuthFailed(error) from error
except LavviebotError as error:
raise UpdateFailed from error
raise UpdateFailed(error) from error
if not data.litterboxes:
raise UpdateFailed("No Litter Boxes found")
return data
4 changes: 2 additions & 2 deletions custom_components/purrsong/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"integration_type": "hub",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/RobertD502/home-assistant-lavviebot/issues",
"requirements": ["lavviebotaio==0.1"],
"version": "0.1.10"
"requirements": ["lavviebotaio==0.2.0"],
"version": "0.1.11"
}

0 comments on commit d47e3ba

Please sign in to comment.