Simplify a bit the main.py file
This commit is contained in:
parent
9e485c0dad
commit
42aa32fb35
7
main.py
7
main.py
@ -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():
|
||||||
|
Loading…
Reference in New Issue
Block a user