diff --git a/pymisp/tools/create_misp_object.py b/pymisp/tools/create_misp_object.py
index a77fb8c..8c9b304 100644
--- a/pymisp/tools/create_misp_object.py
+++ b/pymisp/tools/create_misp_object.py
@@ -44,8 +44,6 @@ def make_macho_objects(lief_parsed, misp_file):
 
 
 def make_binary_objects(filepath):
-    if not HAS_LIEF:
-        raise ImportError('Please install lief, documentation here: https://github.com/lief-project/LIEF')
     misp_file = FileObject(filepath)
     try:
         lief_parsed = lief.parse(filepath)