Don't import custom nodes when the folder ends with .disabled

This commit is contained in:
comfyanonymous 2023-05-15 03:31:03 -04:00
parent c02a554bcf
commit 2ec6d1c6e3
1 changed files with 1 additions and 0 deletions

View File

@ -1326,6 +1326,7 @@ def load_custom_nodes():
for possible_module in possible_modules:
module_path = os.path.join(custom_node_path, possible_module)
if os.path.isfile(module_path) and os.path.splitext(module_path)[1] != ".py": continue
if module_path.endswith(".disabled"): continue
time_before = time.perf_counter()
success = load_custom_node(module_path)
node_import_times.append((time.perf_counter() - time_before, module_path, success))