1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 00:20:30 +01:00

Rename component to integration in DNS IP (#166993)

This commit is contained in:
smarthome-10
2026-03-31 23:24:21 +02:00
committed by GitHub
parent fa7af34678
commit 2b0cff2c93
4 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
"""The dnsip component.""" """The DNS IP integration."""
from __future__ import annotations from __future__ import annotations
@@ -17,7 +17,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Unload dnsip config entry.""" """Unload DNS IP config entry."""
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS) return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)

View File

@@ -1,4 +1,4 @@
"""Tests for the dnsip integration.""" """Tests for the DNS IP integration."""
from __future__ import annotations from __future__ import annotations

View File

@@ -1,4 +1,4 @@
"""Test the dnsip config flow.""" """Test the DNS IP config flow."""
from __future__ import annotations from __future__ import annotations

View File

@@ -1,4 +1,4 @@
"""Test for DNS IP component Init.""" """Test for DNS IP integration Init."""
from __future__ import annotations from __future__ import annotations