diff --git a/main.py b/main.py
index 2a2a160517ec0a05420b65cf00099836ead96672..65158e6913ddef0d00783a0a3703981381f2883f 100755
--- a/main.py
+++ b/main.py
@@ -1,13 +1,12 @@
 #!/usr/bin/python3
 
 import os
-import sys
 import mimetypes
-from shutil import copyfile
 import argparse
 
 from src import parser_factory
 
+
 def __check_file(filename:str, mode:int = os.R_OK) -> bool:
     if not os.path.isfile(filename):
         print("[-] %s is not a regular file." % filename)
@@ -83,10 +82,10 @@ def main():
         return
 
     if args.show:
-        for f in get_files_recursively(args.files):
+        for f in __get_files_recursively(args.files):
             show_meta(f)
     else:
-        for f in get_files_recursively(args.files):
+        for f in __get_files_recursively(args.files):
             clean_meta(f)