src/tools/Package-All.py [112:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if os.path.exists(merged_file_full_path):
            os.remove(merged_file_full_path)

        print('\n========== Merging modules: \n')
        modules_to_be_merged = []
        for root, dirs, files in os.walk(source_code_path):
            for file_name in files:
                if ".py" not in file_name or ".pyc" in file_name:
                    continue
                file_path = os.path.join(root, file_name)
                if '__main__.py' in file_path:
                    modules_to_be_merged.append(file_path)
                elif os.path.basename(file_path) in ('__init__.py'):
                    continue
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/tools/Package-Core.py [115:128]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if os.path.exists(merged_file_full_path):
            os.remove(merged_file_full_path)

        print('\n========== Merging modules: \n')
        modules_to_be_merged = []
        for root, dirs, files in os.walk(source_code_path):
            for file_name in files:
                if ".py" not in file_name or ".pyc" in file_name:
                    continue
                file_path = os.path.join(root, file_name)
                if '__main__.py' in file_path:
                    modules_to_be_merged.append(file_path)
                elif os.path.basename(file_path) in ('__init__.py'):
                    continue
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



