Skip to content

Commit 384f6ce

Browse files
authored
Merge pull request #967 from toshi0607/feature/fix-range-value
fix range value
2 parents d17eb75 + f8b5f28 commit 384f6ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/scaffold/input/input.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ func (pf *ProjectFile) ResourceGroups() []string {
183183
}
184184

185185
groups := []string{}
186-
for g, _ := range groupSet {
186+
for g := range groupSet {
187187
groups = append(groups, g)
188188
}
189189
return groups

0 commit comments

Comments
 (0)