Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srujangit123 committed Dec 29, 2024
1 parent 0af14a8 commit 8dfa3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (c *ImageConfig) IsLanguageSupported(lang Language) bool {
}

func (c *ImageConfig) GetSupportedLanguages() []Language {
var languages []Language
languages := make([]Language, 0, len(*c))
for lang := range *c {
languages = append(languages, lang)
}
Expand Down

0 comments on commit 8dfa3b0

Please sign in to comment.