fix: handle empty string passed to filters
This commit is contained in:
parent
a93380ac9c
commit
52e3d8d58b
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ class Engine:
|
|||
self,
|
||||
filters: dict[str, str | int] | str | int | list[list | str | int] | None = None,
|
||||
):
|
||||
if not filters:
|
||||
if filters is None:
|
||||
return
|
||||
|
||||
if isinstance(filters, (str, int)):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue