From fb544bbd2403e70516ce45f99a48015e2deea14c Mon Sep 17 00:00:00 2001 From: Rushil Patel Date: Wed, 17 Sep 2025 15:49:39 -0700 Subject: [PATCH] fix: remove old commands --- src/codegen/cli/cli.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/codegen/cli/cli.py b/src/codegen/cli/cli.py index 0ae7a9657..1bfd7833d 100644 --- a/src/codegen/cli/cli.py +++ b/src/codegen/cli/cli.py @@ -15,8 +15,6 @@ from codegen.cli.commands.org.main import org from codegen.cli.commands.profile.main import profile_app from codegen.cli.commands.repo.main import repo -from codegen.cli.commands.style_debug.main import style_debug -from codegen.cli.commands.tools.main import tools from codegen.cli.commands.tui.main import tui from codegen.cli.commands.update.main import update from codegen.shared.logging.get_logger import get_logger @@ -79,8 +77,6 @@ def version_callback(value: bool): main.command("logout", help="Clear stored authentication token.")(logout) main.command("org", help="Manage and switch between organizations.")(org) main.command("repo", help="Manage repository configuration and environment variables.")(repo) -main.command("style-debug", help="Debug command to visualize CLI styling (spinners, etc).")(style_debug) -main.command("tools", help="List available tools from the Codegen API.")(tools) main.command("tui", help="Launch the interactive TUI interface.")(tui) main.command("update", help="Update Codegen to the latest or specified version")(update)