mirror of https://github.com/MISP/PyMISP
fix: Extra print breaking the CI on MISP side
parent
d5e430bfe9
commit
ec170103cb
|
@ -37,7 +37,6 @@ def make_binary_objects(filepath: Optional[str] = None, pseudofile: Optional[Byt
|
||||||
if HAS_LIEF and (filepath or (pseudofile and filename)):
|
if HAS_LIEF and (filepath or (pseudofile and filename)):
|
||||||
if filepath:
|
if filepath:
|
||||||
lief_parsed = lief.parse(filepath=filepath)
|
lief_parsed = lief.parse(filepath=filepath)
|
||||||
print(lief_parsed)
|
|
||||||
elif pseudofile and filename:
|
elif pseudofile and filename:
|
||||||
lief_parsed = lief.parse(raw=pseudofile.getvalue(), name=filename)
|
lief_parsed = lief.parse(raw=pseudofile.getvalue(), name=filename)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue