Skip to content

Commit

Permalink
fix: removes unused imports causing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
swingerman committed May 18, 2022
1 parent da3f924 commit cff72b7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions custom_components/dual_smart_thermostat/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@

import asyncio
from datetime import timedelta
from distutils.log import debug
import logging
from tkinter import OFF
from typing import List
from sqlalchemy import false

import voluptuous as vol

from homeassistant.components.climate import PLATFORM_SCHEMA, ClimateEntity
from homeassistant.components.climate.const import (
ATTR_PRESET_MODE,
ATTR_TARGET_TEMP_HIGH,
ATTR_TARGET_TEMP_LOW,
PRESET_AWAY,
Expand Down Expand Up @@ -46,7 +42,7 @@
)
from homeassistant.helpers.reload import async_setup_reload_service
from homeassistant.helpers.restore_state import RestoreEntity
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
from homeassistant.helpers.typing import ConfigType
from homeassistant.helpers.entity_platform import AddEntitiesCallback


Expand All @@ -73,7 +69,6 @@
DEFAULT_MAX_FLOOR_TEMP,
DEFAULT_NAME,
DEFAULT_TOLERANCE,
SUPPORT_FLAGS,
HVACMode,
)

Expand Down

0 comments on commit cff72b7

Please sign in to comment.