mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 09:33:46 +01:00
added missing abstract method
This commit is contained in:
parent
8988d908c5
commit
eb4d2ef5c9
1 changed files with 4 additions and 0 deletions
|
|
@ -162,6 +162,10 @@ class NoneQuery(FieldQuery):
|
|||
except KeyError:
|
||||
return True
|
||||
|
||||
@classmethod
|
||||
def value_match(cls, pattern, value):
|
||||
return pattern == value
|
||||
|
||||
def __repr__(self):
|
||||
return "{0.__class__.__name__}({0.field!r}, {0.fast})".format(self)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue