Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/glinet/button.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Support for turning on and off Pi-hole system."""
"""Button platform for the GL-iNet integration."""

from __future__ import annotations

Expand Down
4 changes: 2 additions & 2 deletions custom_components/glinet/switch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Support for turning on and off Pi-hole system."""
"""Switch platform for the GL-iNet integration."""

from __future__ import annotations

Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down