mirror of https://github.com/MISP/PyMISP
Merge pull request #1162 from baderj/fix-fileobject-import
fix: Correct FileObject importpull/1163/head
commit
98cc6e3868
|
@ -8,6 +8,7 @@ from io import BytesIO
|
||||||
from typing import Any, TYPE_CHECKING
|
from typing import Any, TYPE_CHECKING
|
||||||
|
|
||||||
from ..exceptions import MISPObjectException
|
from ..exceptions import MISPObjectException
|
||||||
|
from . import FileObject
|
||||||
logger = logging.getLogger('pymisp')
|
logger = logging.getLogger('pymisp')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -19,8 +20,6 @@ try:
|
||||||
from .peobject import make_pe_objects
|
from .peobject import make_pe_objects
|
||||||
from .elfobject import make_elf_objects
|
from .elfobject import make_elf_objects
|
||||||
from .machoobject import make_macho_objects
|
from .machoobject import make_macho_objects
|
||||||
from . import FileObject
|
|
||||||
|
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
HAS_LIEF = False
|
HAS_LIEF = False
|
||||||
logger.critical('You need lief >= 0.11.0. The quick and dirty fix is: pip3 install --force pymisp[fileobjects]')
|
logger.critical('You need lief >= 0.11.0. The quick and dirty fix is: pip3 install --force pymisp[fileobjects]')
|
||||||
|
|
Loading…
Reference in New Issue