Use const imports [l-z] (#63469)

This commit is contained in:
Marc Mueller 2022-01-05 18:21:20 +01:00 committed by GitHub
parent 6d57dbde68
commit ae6d9c229e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 28 additions and 34 deletions

View file

@ -8,8 +8,6 @@ from homeassistant.components.vacuum import (
STATE_CLEANING,
STATE_DOCKED,
STATE_ERROR,
STATE_IDLE,
STATE_PAUSED,
STATE_RETURNING,
SUPPORT_BATTERY,
SUPPORT_CLEAN_SPOT,
@ -23,7 +21,12 @@ from homeassistant.components.vacuum import (
SUPPORT_STOP,
StateVacuumEntity,
)
from homeassistant.const import ATTR_SUPPORTED_FEATURES, CONF_NAME
from homeassistant.const import (
ATTR_SUPPORTED_FEATURES,
CONF_NAME,
STATE_IDLE,
STATE_PAUSED,
)
from homeassistant.core import callback
import homeassistant.helpers.config_validation as cv