Skip to content

Commit 24bd48a

Browse files
committed
feat: small bug fix
1 parent 0ac9e15 commit 24bd48a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csv/write_codeSearch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func generateHeadersCode() []string {
9494
func generateRowCode(response models.ResponseBodyNextPage) [][]string {
9595
var rows [][]string
9696

97-
for i, lawsuit := range response.Hit.Hits {
97+
for _, lawsuit := range response.Hit.Hits {
9898
row := []string{
9999
// All those that repeat
100100
strconv.Itoa(response.Took),

0 commit comments

Comments
 (0)