From d855ba4c7879a7fde4b0ceda19eac0d05e17e22b Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 3 Sep 2025 12:25:33 -0700 Subject: [PATCH] removed print message --- ucsinfer/__main__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ucsinfer/__main__.py b/ucsinfer/__main__.py index ce66355..d41da68 100644 --- a/ucsinfer/__main__.py +++ b/ucsinfer/__main__.py @@ -131,6 +131,7 @@ def gather(paths, outfile): types = ['.wav', '.flac'] table = csv.writer(outfile) + logger.debug(f"Loading category list...") catid_list = [cat.catid for cat in load_ucs()] @@ -148,7 +149,7 @@ def gather(paths, outfile): logger.info(f"Found {len(scan_list)} files to process.") - for pair in tqdm.tqdm(scan_list, unit='files', file=sys.stderr): + for pair in tqdm.tqdm(scan_list, unit='files'): if desc := ffmpeg_description(pair[1]): table.writerow([pair[0], desc])