Skip to content

Commit 578669c

Browse files
lesebclaude
andauthored
fix(cli): remove ogx stack rm command due to lack of CLI discovery (#5735)
## Summary - Remove the `ogx stack rm` subcommand which was not discoverable through the CLI - Delete `src/ogx/cli/stack/remove.py` and its registration in `stack.py` - Reduces maintenance burden by removing dead code ## Test plan - [ ] Verify `ogx stack --help` no longer shows `rm` subcommand - [ ] Verify other stack subcommands (`run`, `list-apis`, `list-providers`, etc.) still work - [ ] Pre-commit checks pass Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Sébastien Han <seb@redhat.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7c3dc17 commit 578669c

2 files changed

Lines changed: 0 additions & 118 deletions

File tree

src/ogx/cli/stack/remove.py

Lines changed: 0 additions & 116 deletions
This file was deleted.

src/ogx/cli/stack/stack.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
from .list_apis import StackListApis
1616
from .list_deps import StackListDeps
1717
from .list_providers import StackListProviders
18-
from .remove import StackRemove
1918
from .run import StackRun
2019

2120

@@ -47,6 +46,5 @@ def __init__(self, subparsers: argparse._SubParsersAction):
4746
StackListProviders.create(subparsers)
4847
StackRun.create(subparsers)
4948
StackLetsGo.create(subparsers)
50-
StackRemove.create(subparsers)
5149
StackListBuilds.create(subparsers)
5250
print_subcommand_description(self.parser, subparsers)

0 commit comments

Comments
 (0)