diff --git a/monkey/monkey_island/cc/models/__init__.py b/monkey/monkey_island/cc/models/__init__.py index 005fa08b3..3464154b5 100644 --- a/monkey/monkey_island/cc/models/__init__.py +++ b/monkey/monkey_island/cc/models/__init__.py @@ -1,10 +1,10 @@ -from .command_control_channel import CommandControlChannel # noqa: E402 +from .command_control_channel import CommandControlChannel # Order of importing matters here, for registering the embedded and referenced documents before # using them. -from .config import Config # noqa: E402 -from .creds import Creds # noqa: E402 -from .monkey import Monkey # noqa: E402 -from .monkey_ttl import MonkeyTtl # noqa: E402 -from .pba_results import PbaResults # noqa: E402 -from .report import Report # noqa: E402 +from .config import Config +from .creds import Creds +from .monkey import Monkey +from .monkey_ttl import MonkeyTtl +from .pba_results import PbaResults +from .report import Report