Skip to content

Commit

Permalink
rm default in _dask
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed Jan 8, 2025
1 parent 20ef892 commit 5fa0468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion narwhals/_dask/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def is_between(
self,
lower_bound: Self | Any,
upper_bound: Self | Any,
closed: Literal["left", "right", "none", "both"] = "both",
closed: Literal["left", "right", "none", "both"],
) -> Self:
closed_ = "neither" if closed == "none" else closed
return self._from_call(
Expand Down

0 comments on commit 5fa0468

Please sign in to comment.