Quiet, linter

This commit is contained in:
Gabe Kangas
2022-01-27 14:58:31 -08:00
parent 7b7bbe405b
commit 8bc40486f8
6 changed files with 7 additions and 7 deletions

View File

@@ -52,7 +52,7 @@ func SetupPersistence(file string) error {
if !utils.DoesFileExists(file) {
log.Traceln("Creating new database at", file)
_, err := os.Create(file)
_, err := os.Create(file) //nolint: gosec
if err != nil {
log.Fatal(err.Error())
}