diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4dfb52b..b24c53f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -43,7 +43,7 @@ repos: rev: v3.1.0 hooks: - id: prettier - exclude: ^custom_components/google_home/manifest\.json$ + exclude: ^custom_components/glinet/manifest\.json$ - repo: https://github.com/cdce8p/python-typing-update rev: v0.7.0 hooks: diff --git a/custom_components/glinet/button.py b/custom_components/glinet/button.py index 1b155c9..94e456d 100644 --- a/custom_components/glinet/button.py +++ b/custom_components/glinet/button.py @@ -1,4 +1,4 @@ -"""Support for turning on and off Pi-hole system.""" +"""Button platform for the GL-iNet integration.""" from __future__ import annotations diff --git a/custom_components/glinet/switch.py b/custom_components/glinet/switch.py index ac5599b..b925acd 100644 --- a/custom_components/glinet/switch.py +++ b/custom_components/glinet/switch.py @@ -1,4 +1,4 @@ -"""Support for turning on and off Pi-hole system.""" +"""Switch platform for the GL-iNet integration.""" from __future__ import annotations @@ -22,7 +22,7 @@ async def async_setup_entry( _: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback ) -> None: - """Set up the Pi-hole switch.""" + """Set up GL-iNet switches.""" router: GLinetRouter = entry.runtime_data switches: list[WifiApSwitch | WireGuardSwitch | TailscaleSwitch] = [] if router.wireguard_clients: diff --git a/pyproject.toml b/pyproject.toml index 92404aa..0d1781d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "glinet" -description = "Home Assistant Google Home community integration" +description = "Home Assistant GL-iNet community integration" readme = "README.md" requires-python = ">=3.13.2" dynamic = ["version"]