From 7e471f17877ce2dd69a4f443f6b0c9bf0f95382d Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Wed, 3 Jul 2024 13:05:46 -0300 Subject: [PATCH] fix: lint issue Signed-off-by: Carlos Alexandro Becker --- config_cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_cmd.go b/config_cmd.go index 902ea82..73aba54 100644 --- a/config_cmd.go +++ b/config_cmd.go @@ -34,7 +34,7 @@ var configCmd = &cobra.Command{ Long: paragraph(fmt.Sprintf("\n%s the glow config file. We’ll use EDITOR to determine which editor to use. If the config file doesn't exist, it will be created.", keyword("Edit"))), Example: paragraph("glow config\nglow config --config path/to/config.yml"), Args: cobra.NoArgs, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(*cobra.Command, []string) error { if err := ensureConfigFile(); err != nil { return err }