forked from p15670423/monkey
Remove unnecessary # noqa: F401 from __init__.py files
This commit is contained in:
parent
8b7cb9c0b1
commit
f0a2a43d51
|
@ -1,4 +1,4 @@
|
|||
from infection_monkey.model.host import VictimHost # noqa: F401
|
||||
from infection_monkey.model.host import VictimHost
|
||||
|
||||
MONKEY_ARG = "m0nk3y"
|
||||
DROPPER_ARG = "dr0pp3r"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
from infection_monkey.transport.http import HTTPServer # noqa: F401
|
||||
from infection_monkey.transport.http import LockedHTTPServer # noqa: F401
|
||||
from infection_monkey.transport.http import HTTPServer
|
||||
from infection_monkey.transport.http import LockedHTTPServer
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
from .command_control_channel import CommandControlChannel # noqa: F401, E402
|
||||
from .command_control_channel import CommandControlChannel # noqa: E402
|
||||
|
||||
# Order of importing matters here, for registering the embedded and referenced documents before
|
||||
# using them.
|
||||
from .config import Config # noqa: F401, E402
|
||||
from .creds import Creds # noqa: F401, E402
|
||||
from .monkey import Monkey # noqa: F401, E402
|
||||
from .monkey_ttl import MonkeyTtl # noqa: F401, E402
|
||||
from .pba_results import PbaResults # noqa: F401, E402
|
||||
from .report import Report # noqa: F401, E402
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue