Skip to content

Commit 64702ad

Browse files
committed
remove defaults from pandas
1 parent 173a442 commit 64702ad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

narwhals/_pandas_like/dataframe.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -660,11 +660,11 @@ def join_asof(
660660
self: Self,
661661
other: Self,
662662
*,
663-
left_on: str | None = None,
664-
right_on: str | None = None,
665-
by_left: list[str] | None = None,
666-
by_right: list[str] | None = None,
667-
strategy: Literal["backward", "forward", "nearest"] = "backward",
663+
left_on: str | None,
664+
right_on: str | None,
665+
by_left: list[str] | None,
666+
by_right: list[str] | None,
667+
strategy: Literal["backward", "forward", "nearest"],
668668
suffix: str,
669669
) -> Self:
670670
plx = self.__native_namespace__()

0 commit comments

Comments
 (0)