1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-26 05:16:32 +00:00

Update coresys.py

This commit is contained in:
Pascal Vizeli
2018-04-23 09:05:52 +02:00
committed by GitHub
parent 7dff9e09a7
commit 42dd4d9557

View File

@@ -8,7 +8,6 @@ from .docker import DockerAPI
from .misc.dns import DNSForward
from .misc.hardware import Hardware
from .misc.scheduler import Scheduler
from .misc.systemd import Systemd
class CoreSys:
@@ -29,7 +28,6 @@ class CoreSys:
self._config = CoreConfig()
self._hardware = Hardware()
self._docker = DockerAPI()
self._systemd = Systemd()
self._scheduler = Scheduler(loop=loop)
self._dns = DNSForward(loop=loop)