forked from p15670423/monkey
Agent: Change order in i_puppet/__init__.py to prevent circular import
This commit is contained in:
parent
040b37697b
commit
5953373125
|
@ -1,4 +1,10 @@
|
||||||
from .plugin_type import PluginType
|
from .plugin_type import PluginType
|
||||||
|
from .credential_collection import (
|
||||||
|
Credentials,
|
||||||
|
CredentialType,
|
||||||
|
ICredentialCollector,
|
||||||
|
ICredentialComponent,
|
||||||
|
)
|
||||||
from .i_puppet import (
|
from .i_puppet import (
|
||||||
IPuppet,
|
IPuppet,
|
||||||
ExploiterResultData,
|
ExploiterResultData,
|
||||||
|
@ -10,9 +16,3 @@ from .i_puppet import (
|
||||||
UnknownPluginError,
|
UnknownPluginError,
|
||||||
)
|
)
|
||||||
from .i_fingerprinter import IFingerprinter
|
from .i_fingerprinter import IFingerprinter
|
||||||
from .credential_collection import (
|
|
||||||
Credentials,
|
|
||||||
CredentialType,
|
|
||||||
ICredentialCollector,
|
|
||||||
ICredentialComponent,
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in New Issue