1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-25 04:46:25 +00:00

Update to isort 5.9.3 (#3238)

This commit is contained in:
Stefan Agner
2021-10-18 20:28:38 +02:00
committed by GitHub
parent bb474a5c14
commit 9dd5eee1ae
3 changed files with 5 additions and 6 deletions

View File

@@ -22,17 +22,18 @@ if TYPE_CHECKING:
from .arch import CpuArch
from .auth import Auth
from .backups.manager import BackupManager
from .bus import Bus
from .core import Core
from .dbus.manager import DBusManager
from .discovery import Discovery
from .hardware.manager import HardwareManager
from .os.manager import OSManager
from .homeassistant.module import HomeAssistant
from .host.manager import HostManager
from .ingress import Ingress
from .jobs import JobManager
from .misc.scheduler import Scheduler
from .misc.tasks import Tasks
from .os.manager import OSManager
from .plugins.manager import PluginManager
from .resolution.module import ResolutionManager
from .security import Security
@@ -40,7 +41,6 @@ if TYPE_CHECKING:
from .store import StoreManager
from .supervisor import Supervisor
from .updater import Updater
from .bus import Bus
T = TypeVar("T")