Skip to content

Commit

Permalink
remove unused empty value
Browse files Browse the repository at this point in the history
  • Loading branch information
flopp committed Apr 18, 2024
1 parent b791c34 commit 20ffd81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/utils/name.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func SortAndUniquify(a []string) []string {
}

tags := make([]string, 0, len(m))
for tag, _ := range m {
for tag := range m {
tags = append(tags, tag)
}
sort.Slice(tags, func(i, j int) bool { return tags[i] < tags[j] })
Expand Down

0 comments on commit 20ffd81

Please sign in to comment.