Skip to content

Commit

Permalink
Fix 'should not use underscores in Go names' lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
slid1amo2n3e4 authored Oct 8, 2024
1 parent 17e7e24 commit f6d1f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/internal/data/repo/repo_items.go
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ func (e *ItemsRepository) UpdateByGroup(ctx context.Context, gid uuid.UUID, data
location := data.LocationID

for _, child := range children {
child_location, err := child.QueryLocation().First(ctx)
childLocation, err := child.QueryLocation().First(ctx)
if err != nil {
return ItemOut{}, err
}
Expand Down

0 comments on commit f6d1f9c

Please sign in to comment.