Skip to content

Commit

Permalink
Code formatting tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcclure committed Jul 7, 2024
1 parent 8c817d5 commit 5ee04d5
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions custom_components/aquanta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
For more details about this integration, please refer to
https://github.com/bmcclure/ha-aquanta
"""

from __future__ import annotations

from aquanta import Aquanta
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/binary_sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Binary sensor platform for aqaunta."""

from __future__ import annotations

from homeassistant.components.binary_sensor import (
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Adds config flow for Aquanta."""

from __future__ import annotations

from typing import Any
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Constants for the Aquanta integration."""

from logging import Logger, getLogger

LOGGER: Logger = getLogger(__package__)
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/coordinator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""DataUpdateCoordinator for aquanta."""

from __future__ import annotations

from datetime import timedelta
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/entity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""AquantaEntity class."""

from __future__ import annotations

from datetime import timedelta, datetime, timezone
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Aquanta sensor component."""

from __future__ import annotations

from homeassistant.components.sensor import (
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/switch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Aquanta switch component."""

from __future__ import annotations

from homeassistant.components.switch import (
Expand Down
1 change: 1 addition & 0 deletions custom_components/aquanta/water_heater.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Aquanta water heater component."""

from __future__ import annotations

from homeassistant.components.water_heater import (
Expand Down

0 comments on commit 5ee04d5

Please sign in to comment.