Skip to content

Commit

Permalink
fixed: cm-cli.py - too many values to unpack error
Browse files Browse the repository at this point in the history
  • Loading branch information
ltdrdata committed Jan 13, 2025
1 parent f37f5b0 commit b532a3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cm-cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion glob/manager_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
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 '')


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down

0 comments on commit b532a3e

Please sign in to comment.