Skip to content

Commit 8cf3184

Browse files
authored
fix: remove old commands (#1264)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed
1 parent 322f7b0 commit 8cf3184

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/codegen/cli/cli.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
from codegen.cli.commands.org.main import org
1616
from codegen.cli.commands.profile.main import profile_app
1717
from codegen.cli.commands.repo.main import repo
18-
from codegen.cli.commands.style_debug.main import style_debug
19-
from codegen.cli.commands.tools.main import tools
2018
from codegen.cli.commands.tui.main import tui
2119
from codegen.cli.commands.update.main import update
2220
from codegen.shared.logging.get_logger import get_logger
@@ -79,8 +77,6 @@ def version_callback(value: bool):
7977
main.command("logout", help="Clear stored authentication token.")(logout)
8078
main.command("org", help="Manage and switch between organizations.")(org)
8179
main.command("repo", help="Manage repository configuration and environment variables.")(repo)
82-
main.command("style-debug", help="Debug command to visualize CLI styling (spinners, etc).")(style_debug)
83-
main.command("tools", help="List available tools from the Codegen API.")(tools)
8480
main.command("tui", help="Launch the interactive TUI interface.")(tui)
8581
main.command("update", help="Update Codegen to the latest or specified version")(update)
8682

0 commit comments

Comments
 (0)