From dd9172b73eca36d1f4fa3a939c6068ea7e8c3f78 Mon Sep 17 00:00:00 2001 From: Dongbumlee Date: Mon, 13 Apr 2026 13:09:08 -0700 Subject: [PATCH] fix: remove duplicate _planned_command definition (ruff F811) --- src/agentops/cli/app.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/agentops/cli/app.py b/src/agentops/cli/app.py index 8441c116..97625839 100644 --- a/src/agentops/cli/app.py +++ b/src/agentops/cli/app.py @@ -102,16 +102,6 @@ def cmd_agent_list() -> None: DEFAULT_REPORT_INPUT = Path(".agentops/results/latest/results.json") -def _planned_command(command_name: str) -> None: - typer.echo( - "This command is planned but not implemented in this release:\n" - f" {command_name}\n" - "Please use the currently available commands" - " (`init`, `eval run`, `eval compare`, `report`, `config cicd`) for now." - ) - raise typer.Exit(code=1) - - # --------------------------------------------------------------------------- # Global callback — configures logging before any command runs # ---------------------------------------------------------------------------