fix: Extra print breaking the CI on MISP side

pull/995/head
Raphaël Vinot 2023-05-12 16:06:26 +02:00
parent d5e430bfe9
commit ec170103cb
1 changed files with 0 additions and 1 deletions

View File

@ -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 filepath:
lief_parsed = lief.parse(filepath=filepath)
print(lief_parsed)
elif pseudofile and filename:
lief_parsed = lief.parse(raw=pseudofile.getvalue(), name=filename)
else: