1
0
mirror of https://github.com/USA-RedDragon/badnest.git synced 2025-01-18 18:30:43 +00:00

Add logger to climate

This commit is contained in:
Jacob McSwain 2019-10-19 18:43:25 -05:00
parent 1bd58ba903
commit 52ce92df7e
No known key found for this signature in database
GPG Key ID: 59957AD09B94EDF5

View File

@ -1,5 +1,6 @@
"""Demo platform that offers a fake climate device."""
from datetime import datetime
import logging
from homeassistant.components.climate import ClimateDevice
from homeassistant.components.climate.const import (
@ -56,6 +57,8 @@ PRESET_AWAY_AND_ECO = "Away and Eco"
PRESET_MODES = [PRESET_NONE, PRESET_AWAY, PRESET_ECO, PRESET_AWAY_AND_ECO]
_LOGGER = logging.getLogger(__name__)
async def async_setup_platform(hass,
config,