Bump bring-api to v0.8.1 (#122653)
* Bump bring-api to v0.8.1 * update imports
This commit is contained in:
parent
55a1082866
commit
49e2bfae31
7 changed files with 19 additions and 12 deletions
|
@ -4,8 +4,8 @@ from __future__ import annotations
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from bring_api.bring import Bring
|
from bring_api import (
|
||||||
from bring_api.exceptions import (
|
Bring,
|
||||||
BringAuthException,
|
BringAuthException,
|
||||||
BringParseException,
|
BringParseException,
|
||||||
BringRequestException,
|
BringRequestException,
|
||||||
|
|
|
@ -6,9 +6,12 @@ from collections.abc import Mapping
|
||||||
import logging
|
import logging
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from bring_api.bring import Bring
|
from bring_api import (
|
||||||
from bring_api.exceptions import BringAuthException, BringRequestException
|
Bring,
|
||||||
from bring_api.types import BringAuthResponse
|
BringAuthException,
|
||||||
|
BringAuthResponse,
|
||||||
|
BringRequestException,
|
||||||
|
)
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
||||||
|
|
|
@ -5,8 +5,8 @@ from __future__ import annotations
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from bring_api.bring import Bring
|
from bring_api import (
|
||||||
from bring_api.exceptions import (
|
Bring,
|
||||||
BringAuthException,
|
BringAuthException,
|
||||||
BringParseException,
|
BringParseException,
|
||||||
BringRequestException,
|
BringRequestException,
|
||||||
|
|
|
@ -6,5 +6,5 @@
|
||||||
"documentation": "https://www.home-assistant.io/integrations/bring",
|
"documentation": "https://www.home-assistant.io/integrations/bring",
|
||||||
"integration_type": "service",
|
"integration_type": "service",
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"requirements": ["bring-api==0.7.1"]
|
"requirements": ["bring-api==0.8.1"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,8 +5,12 @@ from __future__ import annotations
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
from bring_api.exceptions import BringRequestException
|
from bring_api import (
|
||||||
from bring_api.types import BringItem, BringItemOperation, BringNotificationType
|
BringItem,
|
||||||
|
BringItemOperation,
|
||||||
|
BringNotificationType,
|
||||||
|
BringRequestException,
|
||||||
|
)
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.components.todo import (
|
from homeassistant.components.todo import (
|
||||||
|
|
|
@ -616,7 +616,7 @@ boto3==1.34.131
|
||||||
botocore==1.34.131
|
botocore==1.34.131
|
||||||
|
|
||||||
# homeassistant.components.bring
|
# homeassistant.components.bring
|
||||||
bring-api==0.7.1
|
bring-api==0.8.1
|
||||||
|
|
||||||
# homeassistant.components.broadlink
|
# homeassistant.components.broadlink
|
||||||
broadlink==0.19.0
|
broadlink==0.19.0
|
||||||
|
|
|
@ -533,7 +533,7 @@ boschshcpy==0.2.91
|
||||||
botocore==1.34.131
|
botocore==1.34.131
|
||||||
|
|
||||||
# homeassistant.components.bring
|
# homeassistant.components.bring
|
||||||
bring-api==0.7.1
|
bring-api==0.8.1
|
||||||
|
|
||||||
# homeassistant.components.broadlink
|
# homeassistant.components.broadlink
|
||||||
broadlink==0.19.0
|
broadlink==0.19.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue