Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonbornsteinMOOV committed Sep 21, 2023
1 parent 3c3ebd5 commit d070921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/response/batch_mirror.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (bm *batchMirror) saveFiles() error {

// sort the keys so that the batches appear in the correct order
keys := make([]string, 0, len(mirror))
for number, _ := range mirror {
for number := range mirror {
keys = append(keys, number)
}
sort.Slice(keys, func(i, j int) bool {
Expand Down

0 comments on commit d070921

Please sign in to comment.