From ad1ea3102f02acd893f3ff8e40b9c1fb8f3db110 Mon Sep 17 00:00:00 2001 From: Logan McNaughton <848146+loganmc10@users.noreply.github.com> Date: Tue, 7 May 2024 09:25:23 -0600 Subject: [PATCH] Fix linter --- cheat-parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat-parser.go b/cheat-parser.go index 5ee490f..9bd602b 100644 --- a/cheat-parser.go +++ b/cheat-parser.go @@ -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) }