diff --git a/cmd/ots-cli/cmd_version.go b/cmd/ots-cli/cmd_version.go index 313423f..8e08a65 100644 --- a/cmd/ots-cli/cmd_version.go +++ b/cmd/ots-cli/cmd_version.go @@ -9,7 +9,7 @@ import ( var versionCmd = &cobra.Command{ Use: "version", Short: "Displays the tool version", - Run: func(cmd *cobra.Command, args []string) { + Run: func(*cobra.Command, []string) { fmt.Printf("ots-cli %s\n", version) //nolint:forbidigo }, }