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

View File

@ -41,7 +41,7 @@ import manager_downloader
from node_package import InstalledNodePackage
version_code = [3, 7, 2]
version_code = [3, 7, 3]
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')

View File

@ -1,7 +1,7 @@
[project]
name = "comfyui-manager"
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
version = "3.7.2"
version = "3.7.3"
license = { file = "LICENSE.txt" }
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]