Skip to content

Commit cff72b7

Browse files
committed
fix: removes unused imports causing issues
1 parent da3f924 commit cff72b7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

custom_components/dual_smart_thermostat/climate.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22

33
import asyncio
44
from datetime import timedelta
5-
from distutils.log import debug
65
import logging
7-
from tkinter import OFF
86
from typing import List
9-
from sqlalchemy import false
107

118
import voluptuous as vol
129

1310
from homeassistant.components.climate import PLATFORM_SCHEMA, ClimateEntity
1411
from homeassistant.components.climate.const import (
15-
ATTR_PRESET_MODE,
1612
ATTR_TARGET_TEMP_HIGH,
1713
ATTR_TARGET_TEMP_LOW,
1814
PRESET_AWAY,
@@ -46,7 +42,7 @@
4642
)
4743
from homeassistant.helpers.reload import async_setup_reload_service
4844
from homeassistant.helpers.restore_state import RestoreEntity
49-
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
45+
from homeassistant.helpers.typing import ConfigType
5046
from homeassistant.helpers.entity_platform import AddEntitiesCallback
5147

5248

@@ -73,7 +69,6 @@
7369
DEFAULT_MAX_FLOOR_TEMP,
7470
DEFAULT_NAME,
7571
DEFAULT_TOLERANCE,
76-
SUPPORT_FLAGS,
7772
HVACMode,
7873
)
7974

0 commit comments

Comments
 (0)