From b6419bd09e3c3c97336e883d197027f865b778b9 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sun, 17 Apr 2022 19:51:44 -0700 Subject: [PATCH] remove unused imports --- custom_components/adaptive_lighting/__init__.py | 2 +- custom_components/adaptive_lighting/switch.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/adaptive_lighting/__init__.py b/custom_components/adaptive_lighting/__init__.py index ccf8760a..f7be6292 100755 --- a/custom_components/adaptive_lighting/__init__.py +++ b/custom_components/adaptive_lighting/__init__.py @@ -1,6 +1,6 @@ """Adaptive Lighting integration in Home-Assistant.""" import logging -from typing import Any, Dict +from typing import Any import voluptuous as vol diff --git a/custom_components/adaptive_lighting/switch.py b/custom_components/adaptive_lighting/switch.py index ae79f4d1..1de61655 100755 --- a/custom_components/adaptive_lighting/switch.py +++ b/custom_components/adaptive_lighting/switch.py @@ -12,7 +12,7 @@ import functools import hashlib import logging import math -from typing import Any, Dict, List, Optional, Tuple, Union +from typing import Any import astral import voluptuous as vol