Skip to content

Commit ccb4807

Browse files
committed
Fix
1 parent e10404f commit ccb4807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/datasource/search.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (e *TooManyResultsError) Error() string {
6969
}
7070

7171
func (e *TooManyResultsError) Is(err error) bool {
72-
_, ok := err.(*TooManyResultsError) //nolint:errorlint // Explicitly does *not* match down the error tree
72+
_, ok := err.(*TooManyResultsError)
7373

7474
return ok
7575
}

0 commit comments

Comments
 (0)