Bump aiooncue to 0.3.5 (#95148)
This commit is contained in:
parent
74d342a000
commit
c8430e4557
4 changed files with 9 additions and 4 deletions
|
@ -3,10 +3,15 @@
|
|||
import asyncio
|
||||
|
||||
import aiohttp
|
||||
from aiooncue import ServiceFailedException
|
||||
|
||||
DOMAIN = "oncue"
|
||||
|
||||
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)
|
||||
CONNECTION_EXCEPTIONS = (
|
||||
asyncio.TimeoutError,
|
||||
aiohttp.ClientError,
|
||||
ServiceFailedException,
|
||||
)
|
||||
|
||||
CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished"
|
||||
|
||||
|
|
|
@ -12,5 +12,5 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/oncue",
|
||||
"iot_class": "cloud_polling",
|
||||
"loggers": ["aiooncue"],
|
||||
"requirements": ["aiooncue==0.3.4"]
|
||||
"requirements": ["aiooncue==0.3.5"]
|
||||
}
|
||||
|
|
|
@ -301,7 +301,7 @@ aionanoleaf==0.2.1
|
|||
aionotion==2023.05.5
|
||||
|
||||
# homeassistant.components.oncue
|
||||
aiooncue==0.3.4
|
||||
aiooncue==0.3.5
|
||||
|
||||
# homeassistant.components.openexchangerates
|
||||
aioopenexchangerates==0.4.0
|
||||
|
|
|
@ -273,7 +273,7 @@ aionanoleaf==0.2.1
|
|||
aionotion==2023.05.5
|
||||
|
||||
# homeassistant.components.oncue
|
||||
aiooncue==0.3.4
|
||||
aiooncue==0.3.5
|
||||
|
||||
# homeassistant.components.openexchangerates
|
||||
aioopenexchangerates==0.4.0
|
||||
|
|
Loading…
Add table
Reference in a new issue