Resolve Python circular import hell - hopefully forever

This commit is contained in:
Kristóf Tóth
2018-07-26 13:59:06 +02:00
parent 7fb5a37831
commit 7a670f37f2
32 changed files with 105 additions and 105 deletions

View File

@ -1,7 +1,2 @@
# Copyright (C) 2018 Avatao.com Innovative Learning Kft.
# All Rights Reserved. See LICENSE file for details.
from .supervisor_mixin import SupervisorMixin, SupervisorLogMixin
from .callback_mixin import CallbackMixin
from .observer_mixin import ObserverMixin
from .monitor_manager_mixin import MonitorManagerMixin

View File

@ -3,7 +3,7 @@
from functools import partial
from tfw.decorators import lazy_property
from tfw.decorators.lazy_property import lazy_property
class CallbackMixin:

View File

@ -3,7 +3,7 @@
from watchdog.observers import Observer
from tfw.decorators import lazy_property
from tfw.decorators.lazy_property import lazy_property
class ObserverMixin:

View File

@ -6,7 +6,7 @@ from xmlrpc.client import Fault as SupervisorFault
from contextlib import suppress
from os import remove
from tfw.decorators import lazy_property
from tfw.decorators.lazy_property import lazy_property
from tfw.config import TFWENV