From 3d23db42c3b2d64c65d8caa5651efef389daf61a Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 22 May 2025 14:49:46 +0000 Subject: [PATCH] style: format code with Black and isort This commit fixes the style issues introduced in 04bda56 according to the output from Black and isort. Details: None --- custom_components/hildebrandglow_dcc/__init__.py | 1 + custom_components/hildebrandglow_dcc/config_flow.py | 1 + custom_components/hildebrandglow_dcc/sensor.py | 1 + 3 files changed, 3 insertions(+) diff --git a/custom_components/hildebrandglow_dcc/__init__.py b/custom_components/hildebrandglow_dcc/__init__.py index 4d95dad..f20a2e6 100644 --- a/custom_components/hildebrandglow_dcc/__init__.py +++ b/custom_components/hildebrandglow_dcc/__init__.py @@ -1,4 +1,5 @@ """The Hildebrand Glow (DCC) integration.""" + from __future__ import annotations import logging diff --git a/custom_components/hildebrandglow_dcc/config_flow.py b/custom_components/hildebrandglow_dcc/config_flow.py index 7ff3af1..b9b8535 100644 --- a/custom_components/hildebrandglow_dcc/config_flow.py +++ b/custom_components/hildebrandglow_dcc/config_flow.py @@ -1,4 +1,5 @@ """Config flow for Hildebrand Glow (DCC) integration.""" + from __future__ import annotations import logging diff --git a/custom_components/hildebrandglow_dcc/sensor.py b/custom_components/hildebrandglow_dcc/sensor.py index 4ac22f6..2bcde23 100644 --- a/custom_components/hildebrandglow_dcc/sensor.py +++ b/custom_components/hildebrandglow_dcc/sensor.py @@ -1,4 +1,5 @@ """Platform for sensor integration.""" + from __future__ import annotations from collections.abc import Callable