Fix flubbed merge

This commit is contained in:
Adrian Sampson 2023-06-23 17:30:27 -07:00
parent 6c77e1a78d
commit 17e1d404b7
No known key found for this signature in database

View file

@ -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.
"""