Skip to content

Commit 7ef110c

Browse files
committed
fix(config) use _ for unused params
1 parent eae6983 commit 7ef110c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/pkg/globalflags/global_flags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func Configure(flagSet *pflag.FlagSet) error {
8080
return nil
8181
}
8282

83-
func Parse(p *print.Printer, cmd *cobra.Command) *GlobalFlagModel {
83+
func Parse(_ *print.Printer, _ *cobra.Command) *GlobalFlagModel {
8484
return &GlobalFlagModel{
8585
Async: viper.GetBool(config.AsyncKey),
8686
AssumeYes: viper.GetBool(config.AssumeYesKey),

0 commit comments

Comments
 (0)