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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)