Update wemo.py

* Reordered datetime import
* Spaces by 4
pull/6001/head
jumpkick 2017-02-15 15:34:42 -05:00 committed by GitHub
parent 29c7987453
commit c404fb7142
1 changed files with 9 additions and 9 deletions

View File

@ -5,12 +5,12 @@ For more details about this component, please refer to the documentation at
https://home-assistant.io/components/switch.wemo/
"""
import logging
from datetime import datetime, timedelta
from homeassistant.components.switch import SwitchDevice
from homeassistant.const import (
STATE_OFF, STATE_ON, STATE_STANDBY, STATE_UNKNOWN)
from homeassistant.loader import get_component
from datetime import datetime, timedelta
DEPENDENCIES = ['wemo']