From d9ebe20ae4ecf1a37fa8b11c53dc8df857254fd1 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 1 Mar 2026 12:25:52 +0000 Subject: [PATCH] chore(cmd): remove init function for completion command This removes the redundant init() that adds the completion command to rootCmd, likely handled elsewhere in the codebase. --- cmd/completion.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmd/completion.go b/cmd/completion.go index b34c61f..4561833 100644 --- a/cmd/completion.go +++ b/cmd/completion.go @@ -61,7 +61,3 @@ PowerShell: } }, } - -func init() { - rootCmd.AddCommand(completionCmd) -}