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