From 31ad536c331df14dd785bfd2a1f93f91a8f7839e Mon Sep 17 00:00:00 2001 From: d8ahazard Date: Tue, 27 Sep 2022 11:05:25 -0500 Subject: [PATCH] Remove debugging message --- modules/modelloader.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/modelloader.py b/modules/modelloader.py index 2ee364f00..3bd1de4da 100644 --- a/modules/modelloader.py +++ b/modules/modelloader.py @@ -98,7 +98,6 @@ def move_files(src_path: str, dest_path: str, ext_filter: str = None): for file in os.listdir(src_path): fullpath = os.path.join(src_path, file) if os.path.isfile(fullpath): - print(f"Checking file {file} in {src_path}") if ext_filter is not None: if ext_filter not in file: continue -- GitLab