File tree 1 file changed +1
-6
lines changed
custom_components/dual_smart_thermostat
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import asyncio
4
4
from datetime import timedelta
5
- from distutils .log import debug
6
5
import logging
7
- from tkinter import OFF
8
6
from typing import List
9
- from sqlalchemy import false
10
7
11
8
import voluptuous as vol
12
9
13
10
from homeassistant .components .climate import PLATFORM_SCHEMA , ClimateEntity
14
11
from homeassistant .components .climate .const import (
15
- ATTR_PRESET_MODE ,
16
12
ATTR_TARGET_TEMP_HIGH ,
17
13
ATTR_TARGET_TEMP_LOW ,
18
14
PRESET_AWAY ,
46
42
)
47
43
from homeassistant .helpers .reload import async_setup_reload_service
48
44
from homeassistant .helpers .restore_state import RestoreEntity
49
- from homeassistant .helpers .typing import ConfigType , DiscoveryInfoType
45
+ from homeassistant .helpers .typing import ConfigType
50
46
from homeassistant .helpers .entity_platform import AddEntitiesCallback
51
47
52
48
73
69
DEFAULT_MAX_FLOOR_TEMP ,
74
70
DEFAULT_NAME ,
75
71
DEFAULT_TOLERANCE ,
76
- SUPPORT_FLAGS ,
77
72
HVACMode ,
78
73
)
79
74
You can’t perform that action at this time.
0 commit comments