1
0
mirror of synced 2024-06-07 14:57:47 +02:00

Simplify a bit the main.py file

This commit is contained in:
jvoisin 2018-04-23 00:11:25 +02:00
parent 9e485c0dad
commit 42aa32fb35

View File

@ -52,7 +52,7 @@ def show_meta(filename:str):
print(" %s: harmful content" % k) print(" %s: harmful content" % k)
def clean_meta(filename:str, is_lightweigth:bool): def clean_meta(filename:str, is_lightweigth:bool) -> bool:
if not __check_file(filename, os.R_OK|os.W_OK): if not __check_file(filename, os.R_OK|os.W_OK):
return return
@ -61,9 +61,8 @@ def clean_meta(filename:str, is_lightweigth:bool):
print("[-] %s's format (%s) is not supported" % (filename, mtype)) print("[-] %s's format (%s) is not supported" % (filename, mtype))
return return
if is_lightweigth: if is_lightweigth:
p.remove_all_lightweight() return p.remove_all_lightweight()
else: return p.remove_all()
p.remove_all()
def show_parsers(): def show_parsers():