Skip to content

Commit

Permalink
🐛 v2.5.7 (#142)
Browse files Browse the repository at this point in the history
Signed-off-by: Ludy87 <[email protected]>
  • Loading branch information
Ludy87 authored Jan 11, 2023
1 parent 07d69ba commit 60e4aa2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ dmypy.json
# Pyre type checker
.pyre/
*.txt
codiga.*

# Home Assistant Core
/homeassistant
2 changes: 1 addition & 1 deletion custom_components/xplora_watch/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async def validate_input(hass: core.HomeAssistant, data: dict[str, Any]) -> dict
try:
await account.init()
except LoginError as err:
raise LoginError(err.message)
raise LoginError(err.error_message)

# Return info that you want to store in the config entry.
return {"title": f"{MANUFACTURER}"}
Expand Down
4 changes: 2 additions & 2 deletions custom_components/xplora_watch/manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"domain": "xplora_watch",
"name": "Xplora® Watch",
"version": "v2.5.6",
"version": "v2.5.7",
"config_flow": true,
"documentation": "https://github.com/Ludy87/xplora_watch/tree/main",
"issue_tracker": "https://github.com/Ludy87/xplora_watch/issues",
"dependencies": [],
"requirements": [
"pyxplora_api==2.3.6",
"pyxplora_api==2.4.0",
"geopy==2.2.0",
"dataclasses-json"
],
Expand Down
2 changes: 1 addition & 1 deletion custom_components/xplora_watch/services.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Support for Xplora® Watch Version 2 send message and manually refresh."""
"""Support for Xplora® Watch Version 2 send/read message, manually refresh and shutdown."""
from __future__ import annotations

import logging
Expand Down

0 comments on commit 60e4aa2

Please sign in to comment.