From 19098b92ee586ee693e72323d15eef89fc3588a8 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sun, 23 Nov 2025 20:32:49 -0800 Subject: [PATCH] Fix unused variable in init.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove unused yellow color variable that was causing build warning. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- cmd/bd/init.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/bd/init.go b/cmd/bd/init.go index 17fc65cd..ad2861fa 100644 --- a/cmd/bd/init.go +++ b/cmd/bd/init.go @@ -353,7 +353,6 @@ With --no-db: creates .beads/ directory and issues.jsonl file instead of SQLite green := color.New(color.FgGreen).SprintFunc() cyan := color.New(color.FgCyan).SprintFunc() - yellow := color.New(color.FgYellow).SprintFunc() fmt.Printf("\n%s bd initialized successfully!\n\n", green("✓")) fmt.Printf(" Database: %s\n", cyan(initDBPath))