From 452ef5f1fa210d29ec8efe14f869ce87bfc52f3c Mon Sep 17 00:00:00 2001 From: Fordjent Agent Date: Thu, 21 May 2026 14:58:57 +0000 Subject: [PATCH] [agent-automation] fix unused imports in cli.go and cli_test.go --- pkg/cli/cli.go | 1 - pkg/cli/cli_test.go | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index 523d0be..7abf73c 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -3,7 +3,6 @@ package cli import ( "fmt" - "os" ) // Run executes the CLI with the given arguments. diff --git a/pkg/cli/cli_test.go b/pkg/cli/cli_test.go index 1f8fe57..4213fa3 100644 --- a/pkg/cli/cli_test.go +++ b/pkg/cli/cli_test.go @@ -8,7 +8,7 @@ import ( func TestRunNoArgs(t *testing.T) { oldStdout := os.Stdout - r, w, _ := os.Pipe() + _, w, _ := os.Pipe() os.Stdout = w err := Run([]string{}) @@ -23,7 +23,7 @@ func TestRunNoArgs(t *testing.T) { func TestRunHelp(t *testing.T) { oldStdout := os.Stdout - r, w, _ := os.Pipe() + _, w, _ := os.Pipe() os.Stdout = w err := Run([]string{"help"})