style(go): apply Go 1.26 formatting

This commit is contained in:
zarzet
2026-07-25 10:20:03 +07:00
parent 60a74a7e0e
commit cbd8fd0342
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ var (
// (including "nothing to search for" inputs). Never disables the provider.
type lyricsNotFoundError struct{ err error }
func (e *lyricsNotFoundError) Error() string { return e.err.Error() }
func (e *lyricsNotFoundError) Unwrap() error { return e.err }
func (e *lyricsNotFoundError) Error() string { return e.err.Error() }
func (e *lyricsNotFoundError) Unwrap() error { return e.err }
func (e *lyricsNotFoundError) Is(target error) bool { return target == errLyricsNotFound }
func lyricsNotFoundErrorf(format string, args ...any) error {