🚨 Happy linter

This commit is contained in:
makeworld 2021-02-27 00:21:57 -05:00
parent 8198aa09d0
commit 4514f8b8c0
1 changed files with 2 additions and 1 deletions

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
}