fixed: cm-cli.py - too many values to unpack error

https://github.com/ltdrdata/ComfyUI-Manager/issues/1446
This commit is contained in:
Dr.Lt.Data
2025-01-13 12:20:46 +09:00
parent f37f5b0ae2
commit b532a3e784
3 changed files with 4 additions and 4 deletions

View File

@@ -537,7 +537,7 @@ def get_all_installed_node_specs():
res.append(node_spec_str)
processed.add(k)
for k, _ in unified_manager.cnr_inactive_nodes.keys():
for k in unified_manager.cnr_inactive_nodes.keys():
if k in processed:
continue
@@ -546,7 +546,7 @@ def get_all_installed_node_specs():
node_spec_str = f"{k}@{str(latest[0])}"
res.append(node_spec_str)
for k, _ in unified_manager.nightly_inactive_nodes.keys():
for k in unified_manager.nightly_inactive_nodes.keys():
if k in processed:
continue