Sort imports according to PEP8 for vesync (#29684)

This commit is contained in:
Bas Nijholt 2019-12-09 11:56:02 +01:00 committed by Franck Nijhof
parent e4e4f78eb0
commit b54c8641b4
5 changed files with 25 additions and 13 deletions

View file

@ -1,10 +1,12 @@
"""Support for Etekcity VeSync switches."""
import logging
from homeassistant.core import callback
from homeassistant.components.switch import SwitchDevice
from homeassistant.core import callback
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from .const import VS_DISCOVERY, VS_DISPATCHERS, VS_SWITCHES, DOMAIN
from .common import VeSyncDevice
from .const import DOMAIN, VS_DISCOVERY, VS_DISPATCHERS, VS_SWITCHES
_LOGGER = logging.getLogger(__name__)