parent
55a1082866
commit
49e2bfae31
|
@ -4,8 +4,8 @@ from __future__ import annotations
|
|||
|
||||
import logging
|
||||
|
||||
from bring_api.bring import Bring
|
||||
from bring_api.exceptions import (
|
||||
from bring_api import (
|
||||
Bring,
|
||||
BringAuthException,
|
||||
BringParseException,
|
||||
BringRequestException,
|
||||
|
|
|
@ -6,9 +6,12 @@ from collections.abc import Mapping
|
|||
import logging
|
||||
from typing import Any
|
||||
|
||||
from bring_api.bring import Bring
|
||||
from bring_api.exceptions import BringAuthException, BringRequestException
|
||||
from bring_api.types import BringAuthResponse
|
||||
from bring_api import (
|
||||
Bring,
|
||||
BringAuthException,
|
||||
BringAuthResponse,
|
||||
BringRequestException,
|
||||
)
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
||||
|
|
|
@ -5,8 +5,8 @@ from __future__ import annotations
|
|||
from datetime import timedelta
|
||||
import logging
|
||||
|
||||
from bring_api.bring import Bring
|
||||
from bring_api.exceptions import (
|
||||
from bring_api import (
|
||||
Bring,
|
||||
BringAuthException,
|
||||
BringParseException,
|
||||
BringRequestException,
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/bring",
|
||||
"integration_type": "service",
|
||||
"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
|
||||
import uuid
|
||||
|
||||
from bring_api.exceptions import BringRequestException
|
||||
from bring_api.types import BringItem, BringItemOperation, BringNotificationType
|
||||
from bring_api import (
|
||||
BringItem,
|
||||
BringItemOperation,
|
||||
BringNotificationType,
|
||||
BringRequestException,
|
||||
)
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.components.todo import (
|
||||
|
|
|
@ -616,7 +616,7 @@ boto3==1.34.131
|
|||
botocore==1.34.131
|
||||
|
||||
# homeassistant.components.bring
|
||||
bring-api==0.7.1
|
||||
bring-api==0.8.1
|
||||
|
||||
# homeassistant.components.broadlink
|
||||
broadlink==0.19.0
|
||||
|
|
|
@ -533,7 +533,7 @@ boschshcpy==0.2.91
|
|||
botocore==1.34.131
|
||||
|
||||
# homeassistant.components.bring
|
||||
bring-api==0.7.1
|
||||
bring-api==0.8.1
|
||||
|
||||
# homeassistant.components.broadlink
|
||||
broadlink==0.19.0
|
||||
|
|
Loading…
Reference in New Issue