Skip to content

Commit 16d3dc3

Browse files
committedJan 18, 2025
Migrate from homeassistant.core.Config to homeassistant.core_config.Config
1 parent 19ceb06 commit 16d3dc3

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed
 

‎custom_components/netgear_wax/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88

99
from datetime import timedelta
1010

11+
from homeassistant.core_config import Config
1112
from homeassistant.config_entries import ConfigEntry
12-
from homeassistant.core import Config, HomeAssistant
13+
from homeassistant.core import HomeAssistant
1314
from homeassistant.exceptions import ConfigEntryNotReady
1415
from homeassistant.helpers.aiohttp_client import async_get_clientsession
1516
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed

‎hacs.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Netgear WAX",
33
"hacs": "1.6.0",
4-
"homeassistant": "2024.1.0",
4+
"homeassistant": "2025.1.2",
55
"domains": [
66
"binary_sensor",
77
"sensor",
@@ -11,5 +11,7 @@
1111
"render_readme": true,
1212
"documentation": "https://github.com/rroller/netgear/blob/main/README.md",
1313
"issue_tracker": "https://github.com/rroller/netgear/issues",
14-
"codeowners": ["@rroller"]
15-
}
14+
"codeowners": [
15+
"@rroller"
16+
]
17+
}

‎requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
homeassistant~=2024.10.4
1+
homeassistant~=2025.1.2
22
colorlog==6.8.2
33
pip>=24.3.1
44
ruff==0.7.1

0 commit comments

Comments
 (0)
Please sign in to comment.