1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-19 19:25:24 +00:00

🚨 Happy linter

This commit is contained in:
makeworld 2021-02-27 00:21:57 -05:00
parent 8198aa09d0
commit 4514f8b8c0

View File

@ -61,11 +61,12 @@ func Init() error {
err = os.Remove(config.OldBkmkPath)
if err != nil {
//nolint:goerr113
return fmt.Errorf(
"couldn't delete old bookmarks file (%s), you must delete it yourself to prevent duplicate bookmarks: %w",
config.OldBkmkPath,
err,
) //nolint:goerr113,nolintlint
)
}
config.BkmkStore = nil
}