Skip to content

Commit

Permalink
🚨 Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Mar 13, 2022
1 parent 0adb671 commit 36759c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/flags/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func Context(cmd *cobra.Command) {
return nil, cobra.ShellCompDirectiveNoFileComp
}
names := make([]string, 0, len(conf.Contexts))
for name, _ := range conf.Contexts {
for name := range conf.Contexts {
names = append(names, name)
}
return names, cobra.ShellCompDirectiveNoFileComp
Expand Down

0 comments on commit 36759c6

Please sign in to comment.