import cleanup if __name__ == '__main__': ## Clean up git repository #Reset and remove untracked files os.system("git reset --hard") os.system("git clean -fdx") cleanup.remove_ds_store_files() cleanup.remove_setup_complete_files() cleanup.remove_empty_folders()