We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02a554 commit 2ec6d1cCopy full SHA for 2ec6d1c
nodes.py
@@ -1326,6 +1326,7 @@ def load_custom_nodes():
1326
for possible_module in possible_modules:
1327
module_path = os.path.join(custom_node_path, possible_module)
1328
if os.path.isfile(module_path) and os.path.splitext(module_path)[1] != ".py": continue
1329
+ if module_path.endswith(".disabled"): continue
1330
time_before = time.perf_counter()
1331
success = load_custom_node(module_path)
1332
node_import_times.append((time.perf_counter() - time_before, module_path, success))
0 commit comments