diff --git a/custom_components/adtpulse/__init__.py b/custom_components/adtpulse/__init__.py index fa479dc..f60973d 100644 --- a/custom_components/adtpulse/__init__.py +++ b/custom_components/adtpulse/__init__.py @@ -2,6 +2,7 @@ See https://github.com/rsnodgrass/hass-adtpulse """ + from __future__ import annotations from logging import getLogger diff --git a/custom_components/adtpulse/alarm_control_panel.py b/custom_components/adtpulse/alarm_control_panel.py index 63fe0e4..ab63ceb 100644 --- a/custom_components/adtpulse/alarm_control_panel.py +++ b/custom_components/adtpulse/alarm_control_panel.py @@ -1,4 +1,5 @@ """Support for ADT Pulse alarm control panels.""" + from __future__ import annotations from logging import getLogger diff --git a/custom_components/adtpulse/base_entity.py b/custom_components/adtpulse/base_entity.py index 75bcd43..940b740 100644 --- a/custom_components/adtpulse/base_entity.py +++ b/custom_components/adtpulse/base_entity.py @@ -1,4 +1,5 @@ """ADT Pulse Entity Base class.""" + from __future__ import annotations from logging import getLogger diff --git a/custom_components/adtpulse/binary_sensor.py b/custom_components/adtpulse/binary_sensor.py index 5f81d81..54230f2 100644 --- a/custom_components/adtpulse/binary_sensor.py +++ b/custom_components/adtpulse/binary_sensor.py @@ -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 diff --git a/custom_components/adtpulse/config_flow.py b/custom_components/adtpulse/config_flow.py index e79728e..5f051ea 100644 --- a/custom_components/adtpulse/config_flow.py +++ b/custom_components/adtpulse/config_flow.py @@ -1,4 +1,5 @@ """HASS ADT Pulse Config Flow.""" + from __future__ import annotations from logging import getLogger diff --git a/custom_components/adtpulse/coordinator.py b/custom_components/adtpulse/coordinator.py index ff633d4..d7d3f41 100644 --- a/custom_components/adtpulse/coordinator.py +++ b/custom_components/adtpulse/coordinator.py @@ -1,4 +1,5 @@ """ADT Pulse Update Coordinator.""" + from __future__ import annotations from logging import getLogger diff --git a/custom_components/adtpulse/sensor.py b/custom_components/adtpulse/sensor.py index 69f1aab..4b2f9d0 100644 --- a/custom_components/adtpulse/sensor.py +++ b/custom_components/adtpulse/sensor.py @@ -1,4 +1,5 @@ """ADT Pulse sensors.""" + from __future__ import annotations from logging import getLogger diff --git a/custom_components/adtpulse/utils.py b/custom_components/adtpulse/utils.py index 6530bda..281c7a1 100644 --- a/custom_components/adtpulse/utils.py +++ b/custom_components/adtpulse/utils.py @@ -1,4 +1,5 @@ """ADT Pulse utility functions.""" + from __future__ import annotations from homeassistant.core import HomeAssistant