parent
5f4d286556
commit
0b47bf1f0b
|
@ -947,8 +947,8 @@ build.json @home-assistant/supervisor
|
|||
/tests/components/remote/ @home-assistant/core
|
||||
/homeassistant/components/renault/ @epenet
|
||||
/tests/components/renault/ @epenet
|
||||
/homeassistant/components/reolink/ @starkillerOG @JimStar
|
||||
/tests/components/reolink/ @starkillerOG @JimStar
|
||||
/homeassistant/components/reolink/ @starkillerOG
|
||||
/tests/components/reolink/ @starkillerOG
|
||||
/homeassistant/components/repairs/ @home-assistant/core
|
||||
/tests/components/repairs/ @home-assistant/core
|
||||
/homeassistant/components/repetier/ @MTrab @ShadowBr0ther
|
||||
|
|
|
@ -9,7 +9,7 @@ import logging
|
|||
|
||||
from aiohttp import ClientConnectorError
|
||||
import async_timeout
|
||||
from reolink_ip.exceptions import ApiError, InvalidContentTypeError
|
||||
from reolink_aio.exceptions import ApiError, InvalidContentTypeError
|
||||
|
||||
from homeassistant.config_entries import ConfigEntry
|
||||
from homeassistant.const import EVENT_HOMEASSISTANT_STOP, Platform
|
||||
|
|
|
@ -4,7 +4,7 @@ from __future__ import annotations
|
|||
import logging
|
||||
from typing import Any
|
||||
|
||||
from reolink_ip.exceptions import ApiError, CredentialsInvalidError
|
||||
from reolink_aio.exceptions import ApiError, CredentialsInvalidError
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant import config_entries, core, exceptions
|
||||
|
|
|
@ -7,8 +7,8 @@ import logging
|
|||
from typing import Any
|
||||
|
||||
import aiohttp
|
||||
from reolink_ip.api import Host
|
||||
from reolink_ip.exceptions import (
|
||||
from reolink_aio.api import Host
|
||||
from reolink_aio.exceptions import (
|
||||
ApiError,
|
||||
CredentialsInvalidError,
|
||||
InvalidContentTypeError,
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
"name": "Reolink IP NVR/camera",
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/reolink",
|
||||
"requirements": ["reolink-ip==0.0.40"],
|
||||
"codeowners": ["@starkillerOG", "@JimStar"],
|
||||
"requirements": ["reolink-aio==0.1.1"],
|
||||
"codeowners": ["@starkillerOG"],
|
||||
"iot_class": "local_polling",
|
||||
"loggers": ["reolink-ip"]
|
||||
"loggers": ["reolink-aio"]
|
||||
}
|
||||
|
|
|
@ -2190,7 +2190,7 @@ regenmaschine==2022.11.0
|
|||
renault-api==0.1.11
|
||||
|
||||
# homeassistant.components.reolink
|
||||
reolink-ip==0.0.40
|
||||
reolink-aio==0.1.1
|
||||
|
||||
# homeassistant.components.python_script
|
||||
restrictedpython==5.2
|
||||
|
|
|
@ -1529,7 +1529,7 @@ regenmaschine==2022.11.0
|
|||
renault-api==0.1.11
|
||||
|
||||
# homeassistant.components.reolink
|
||||
reolink-ip==0.0.40
|
||||
reolink-aio==0.1.1
|
||||
|
||||
# homeassistant.components.python_script
|
||||
restrictedpython==5.2
|
||||
|
|
|
@ -3,7 +3,7 @@ import json
|
|||
from unittest.mock import AsyncMock, Mock, patch
|
||||
|
||||
import pytest
|
||||
from reolink_ip.exceptions import ApiError, CredentialsInvalidError
|
||||
from reolink_aio.exceptions import ApiError, CredentialsInvalidError
|
||||
|
||||
from homeassistant import config_entries, data_entry_flow
|
||||
from homeassistant.components.reolink import const
|
||||
|
|
Loading…
Reference in New Issue