Skip to content

Commit

Permalink
Bump aiosomecomfort to 0.0.24 (#104649)
Browse files Browse the repository at this point in the history
* Bump aiosomecomfort to 0.0.24

* PascalCase change
  • Loading branch information
mkmer committed Nov 28, 2023
1 parent 9bdf82e commit 5956637
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/honeywell/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from aiohttp import ClientConnectionError
from aiosomecomfort import (
AuthError,
ConnectionError as asc_ConnectionError,
ConnectionError as AscConnectionError,
SomeComfortError,
UnauthorizedError,
UnexpectedResponse,
Expand Down Expand Up @@ -523,7 +523,7 @@ async def _login() -> None:
await _login()
return

except (asc_ConnectionError, ClientConnectionError, asyncio.TimeoutError):
except (AscConnectionError, ClientConnectionError, asyncio.TimeoutError):
self._retry += 1
self._attr_available = self._retry <= RETRY
return
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/honeywell/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/honeywell",
"iot_class": "cloud_polling",
"loggers": ["somecomfort"],
"requirements": ["AIOSomecomfort==0.0.23"]
"requirements": ["AIOSomecomfort==0.0.24"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AEMET-OpenData==0.4.6
AIOAladdinConnect==0.1.58

# homeassistant.components.honeywell
AIOSomecomfort==0.0.23
AIOSomecomfort==0.0.24

# homeassistant.components.adax
Adax-local==0.1.5
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AEMET-OpenData==0.4.6
AIOAladdinConnect==0.1.58

# homeassistant.components.honeywell
AIOSomecomfort==0.0.23
AIOSomecomfort==0.0.24

# homeassistant.components.adax
Adax-local==0.1.5
Expand Down

0 comments on commit 5956637

Please sign in to comment.