mirror of
https://github.com/beetbox/beets.git
synced 2025-12-23 17:13:30 +01:00
PathQuery: improve __repr__
by including case_sensitive
This commit is contained in:
parent
8733ea9bf1
commit
203dda6ac1
1 changed files with 6 additions and 0 deletions
|
|
@ -151,6 +151,12 @@ class PathQuery(dbcore.FieldQuery):
|
|||
dir_blob,
|
||||
)
|
||||
|
||||
def __repr__(self) -> str:
|
||||
return (
|
||||
f"{self.__class__.__name__}({self.field!r}, {self.pattern!r}, "
|
||||
f"fast={self.fast}, case_sensitive={self.case_sensitive})"
|
||||
)
|
||||
|
||||
|
||||
# Library-specific field types.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue