From 2cc7eba22bb3b5df665cf650687cf83984f6abf8 Mon Sep 17 00:00:00 2001 From: argoneus Date: Thu, 9 Jul 2020 19:07:45 +0200 Subject: [PATCH] removed todo --- xdudata/update.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/xdudata/update.py b/xdudata/update.py index 8dd8af4..8f61b6f 100644 --- a/xdudata/update.py +++ b/xdudata/update.py @@ -15,9 +15,6 @@ from xdudata.asset_extract import process_se, process_bgm, process_voice, proces def update_all( cache_dir, update_dir, translation_dir, extract_dir, languages, ): - print("Checking tool availability") - validate_tools() - print("Cleaning cache") cleanup_cache(cache_dir) @@ -43,11 +40,6 @@ def update_all( process_movie(cache_dir, extract_dir, update_dir) -def validate_tools(): - # TODO validate all the tools are in PATH - ... - - def cleanup_cache(cache_dir): with suppress(FileNotFoundError): shutil.rmtree(os.path.join(cache_dir, "Common/Asset/Utage/event32"))