sort imports according to PEP8 for acer_projector (#29611)

pull/29617/head
Bas Nijholt 2019-12-08 13:45:33 +01:00 committed by Franck Nijhof
parent cfe68d7e00
commit b4bcd477f8
1 changed files with 6 additions and 6 deletions

View File

@ -1,17 +1,17 @@
"""Use serial protocol of Acer projector to obtain state of the projector."""
import logging
import re
import serial
import serial
import voluptuous as vol
from homeassistant.components.switch import SwitchDevice, PLATFORM_SCHEMA
from homeassistant.components.switch import PLATFORM_SCHEMA, SwitchDevice
from homeassistant.const import (
STATE_ON,
STATE_OFF,
STATE_UNKNOWN,
CONF_NAME,
CONF_FILENAME,
CONF_NAME,
STATE_OFF,
STATE_ON,
STATE_UNKNOWN,
)
import homeassistant.helpers.config_validation as cv