Skip to content

Commit 36759c6

Browse files
committed
🚨 Fix lint error
1 parent 0adb671 commit 36759c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/config/flags/kubernetes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func Context(cmd *cobra.Command) {
3131
return nil, cobra.ShellCompDirectiveNoFileComp
3232
}
3333
names := make([]string, 0, len(conf.Contexts))
34-
for name, _ := range conf.Contexts {
34+
for name := range conf.Contexts {
3535
names = append(names, name)
3636
}
3737
return names, cobra.ShellCompDirectiveNoFileComp

0 commit comments

Comments
 (0)