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