From 17e1d404b7dac4923715b59c3ac33baebe9a8603 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Fri, 23 Jun 2023 17:30:27 -0700 Subject: [PATCH] Fix flubbed merge --- beets/dbcore/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/dbcore/query.py b/beets/dbcore/query.py index 3c753d8b9..295632ad7 100644 --- a/beets/dbcore/query.py +++ b/beets/dbcore/query.py @@ -96,7 +96,7 @@ class Query(ABC): return None, () @abstractmethod - def match(self, item: Item): + def match(self, obj: Model): """Check whether this query matches a given Model. Can be used to perform queries on arbitrary sets of Model. """