Skip to content

Commit 29e235c

Browse files
[fix] resolve import order issue - remove pr_command from __init__ exports
1 parent 5e8f303 commit 29e235c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

comfy_cli/cmdline.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
from rich.console import Console
1111

1212
from comfy_cli import constants, env_checker, logging, tracking, ui, utils
13-
from comfy_cli.command import custom_nodes, pr_command
13+
from comfy_cli.command import custom_nodes
1414
from comfy_cli.command import install as install_inner
15+
from comfy_cli.command import pr_command
1516
from comfy_cli.command import run as run_inner
1617
from comfy_cli.command.install import validate_version
1718
from comfy_cli.command.launch import launch as launch_command

comfy_cli/command/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from . import custom_nodes, install, pr_command
1+
from . import custom_nodes, install
22

3-
__all__ = ["custom_nodes", "install", "pr_command"]
3+
__all__ = ["custom_nodes", "install"]

0 commit comments

Comments
 (0)