From ec170103cb510b6d7d2fd94f02cb77d1a8783e35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Fri, 12 May 2023 16:06:26 +0200 Subject: [PATCH] fix: Extra print breaking the CI on MISP side --- pymisp/tools/create_misp_object.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pymisp/tools/create_misp_object.py b/pymisp/tools/create_misp_object.py index 292a027..60a0ae8 100644 --- a/pymisp/tools/create_misp_object.py +++ b/pymisp/tools/create_misp_object.py @@ -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: