Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed Sep 10, 2024
1 parent 210113b commit ac35d4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion narwhals/_dask/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ def filter(
and isinstance(predicates[0], list)
and all(isinstance(x, bool) for x in predicates[0])
):
msg = "Filtering with boolean mask is not supported for `DaskLazyFrame`"
msg = (
"`LazyFrame.filter` is not supported for Dask backend with boolean masks."
)
raise NotImplementedError(msg)

from narwhals._dask.namespace import DaskNamespace
Expand Down

0 comments on commit ac35d4f

Please sign in to comment.