MCPcopy
hub / github.com/beetbox/beets / FalseQuery

Class FalseQuery

beets/dbcore/query.py:658–665  ·  view source on GitHub ↗

A query that never matches.

Source from the content-addressed store, hash-verified

656
657
658class FalseQuery(Query):
659 """A query that never matches."""
660
661 def clause(self) -> tuple[str, Sequence[SQLiteType]]:
662 return "0", ()
663
664 def match(self, obj: Model) -> bool:
665 return False
666
667
668# Time/date queries.

Callers 1

importedMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected