Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rlippmann committed Feb 1, 2024
1 parent 3455973 commit 5e1e6d8
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions custom_components/adtpulse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
See https://github.com/rsnodgrass/hass-adtpulse
"""

from __future__ import annotations

from logging import getLogger
Expand Down
1 change: 1 addition & 0 deletions custom_components/adtpulse/alarm_control_panel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Support for ADT Pulse alarm control panels."""

from __future__ import annotations

from logging import getLogger
Expand Down
1 change: 1 addition & 0 deletions custom_components/adtpulse/base_entity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ADT Pulse Entity Base class."""

from __future__ import annotations

from logging import getLogger
Expand Down
1 change: 1 addition & 0 deletions custom_components/adtpulse/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
automatically discovers the ADT sensors configured within Pulse and
exposes them into HA.
"""

from __future__ import annotations

from logging import getLogger
Expand Down
1 change: 1 addition & 0 deletions custom_components/adtpulse/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""HASS ADT Pulse Config Flow."""

from __future__ import annotations

from logging import getLogger
Expand Down
1 change: 1 addition & 0 deletions custom_components/adtpulse/coordinator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ADT Pulse Update Coordinator."""

from __future__ import annotations

from logging import getLogger
Expand Down
1 change: 1 addition & 0 deletions custom_components/adtpulse/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ADT Pulse sensors."""

from __future__ import annotations

from logging import getLogger
Expand Down
1 change: 1 addition & 0 deletions custom_components/adtpulse/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ADT Pulse utility functions."""

from __future__ import annotations

from homeassistant.core import HomeAssistant
Expand Down

0 comments on commit 5e1e6d8

Please sign in to comment.