We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8161b86 commit 2853a4cCopy full SHA for 2853a4c
ibis/expr/types/relations.py
@@ -2851,7 +2851,11 @@ def drop(self, *fields: str | Selector) -> Table:
2851
2852
def filter(
2853
self,
2854
- *predicates: ir.BooleanValue | Sequence[ir.BooleanValue] | IfAnyAll | Deferred,
+ *predicates: ir.BooleanValue
2855
+ | bool
2856
+ | Sequence[ir.BooleanValue | bool]
2857
+ | IfAnyAll
2858
+ | Deferred,
2859
) -> Table:
2860
"""Select rows from `table` based on `predicates`.
2861
0 commit comments