Update isort configuration and sorts imports in codebase (#1739)

* Add known first party to isort configuration

* Run isort on supervisor and tests folder
This commit is contained in:
Franck Nijhof
2020-05-21 13:30:54 +02:00
committed by GitHub
parent 5e5fd3a79b
commit 1d83c0c77a
65 changed files with 111 additions and 128 deletions

View File

@@ -5,16 +5,16 @@ from typing import Any, Dict
from aiohttp import web
from .utils import api_process
from ..const import (
ATTR_SERIAL,
ATTR_AUDIO,
ATTR_DISK,
ATTR_GPIO,
ATTR_AUDIO,
ATTR_INPUT,
ATTR_OUTPUT,
ATTR_SERIAL,
)
from ..coresys import CoreSysAttributes
from .utils import api_process
_LOGGER: logging.Logger = logging.getLogger(__name__)