Skip to content

Commit

Permalink
fix: golangci-lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
j178 committed Aug 1, 2023
1 parent 90ca664 commit d1cd4dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions scripts/analyze.go → scripts/analyze/analyze.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,10 @@ func main() {
f, _ := os.Create(filepath.Join(out.TargetDir(), "question.json"))
enc := json.NewEncoder(f)
enc.SetIndent("", " ")
enc.Encode(q)
_ = enc.Encode(q)
f.Close()
}
}

fmt.Printf(
"total: %d, %v, manual: %d\n",
len(questions),
categories,
)
fmt.Printf("total: %d, %v\n", len(questions), categories)
}
File renamed without changes.

0 comments on commit d1cd4dd

Please sign in to comment.