Skip to content

Commit

Permalink
Fix linter (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
loganmc10 authored May 7, 2024
1 parent 6a78de6 commit e83602a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cheat-parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func main() {
log.Panic(err)
}

f, err := os.OpenFile("cheats.json", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o644) //nolint:gomnd
f, err := os.OpenFile("cheats.json", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o644) //nolint:gomnd,mnd
if err != nil {
log.Panic(err)
}
Expand Down

0 comments on commit e83602a

Please sign in to comment.