mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +00:00
sort imports according to PEP8 for acer_projector (#29611)
This commit is contained in:
parent
cfe68d7e00
commit
b4bcd477f8
@ -1,17 +1,17 @@
|
|||||||
"""Use serial protocol of Acer projector to obtain state of the projector."""
|
"""Use serial protocol of Acer projector to obtain state of the projector."""
|
||||||
import logging
|
import logging
|
||||||
import re
|
import re
|
||||||
import serial
|
|
||||||
|
|
||||||
|
import serial
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.components.switch import SwitchDevice, PLATFORM_SCHEMA
|
from homeassistant.components.switch import PLATFORM_SCHEMA, SwitchDevice
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
STATE_ON,
|
|
||||||
STATE_OFF,
|
|
||||||
STATE_UNKNOWN,
|
|
||||||
CONF_NAME,
|
|
||||||
CONF_FILENAME,
|
CONF_FILENAME,
|
||||||
|
CONF_NAME,
|
||||||
|
STATE_OFF,
|
||||||
|
STATE_ON,
|
||||||
|
STATE_UNKNOWN,
|
||||||
)
|
)
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user