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

@@ -4,7 +4,7 @@ import "os"
// WritePlaylist writes the playlist to disk.
func WritePlaylist(data string, filePath string) error {
f, err := os.Create(filePath)
f, err := os.Create(filePath) //nolint:gosec
if err != nil {
return err
}