Skip to content

Commit 0a8d117

Browse files
starkillerOGfrenck
authored andcommitted
Bump reolink-aio to 0.14.0 (home-assistant#146566)
1 parent 83f26f7 commit 0a8d117

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

homeassistant/components/reolink/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __init__(
8282
connections={(CONNECTION_NETWORK_MAC, self._host.api.mac_address)},
8383
name=self._host.api.nvr_name,
8484
model=self._host.api.model,
85-
model_id=self._host.api.item_number,
85+
model_id=self._host.api.item_number(),
8686
manufacturer=self._host.api.manufacturer,
8787
hw_version=self._host.api.hardware_version,
8888
sw_version=self._host.api.sw_version,

homeassistant/components/reolink/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
"iot_class": "local_push",
2020
"loggers": ["reolink_aio"],
2121
"quality_scale": "platinum",
22-
"requirements": ["reolink-aio==0.13.5"]
22+
"requirements": ["reolink-aio==0.14.0"]
2323
}

requirements_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements_test_all.txt

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/components/reolink/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def reolink_connect_class() -> Generator[MagicMock]:
9999
host_mock.sw_upload_progress.return_value = 100
100100
host_mock.manufacturer = "Reolink"
101101
host_mock.model = TEST_HOST_MODEL
102-
host_mock.item_number = TEST_ITEM_NUMBER
102+
host_mock.item_number.return_value = TEST_ITEM_NUMBER
103103
host_mock.camera_model.return_value = TEST_CAM_MODEL
104104
host_mock.camera_name.return_value = TEST_NVR_NAME
105105
host_mock.camera_hardware_version.return_value = "IPC_00001"

0 commit comments

Comments
 (0)