Skip to content

Commit d6da86b

Browse files
authored
chore(python): Fix docstring with_context (#6118)
1 parent 05447ab commit d6da86b

File tree

1 file changed

+2
-1
lines changed
  • py-polars/polars/internals/lazyframe

1 file changed

+2
-1
lines changed

py-polars/polars/internals/lazyframe/frame.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2518,7 +2518,8 @@ def with_context(self, other: LDF | list[LDF]) -> LDF:
25182518
│ null │
25192519
└──────┘
25202520
2521-
Fill nulls with the median from another dataframe
2521+
Fill nulls with the median from another dataframe:
2522+
25222523
>>> train_df = pl.DataFrame(
25232524
... {"feature_0": [-1.0, 0, 1], "feature_1": [-1.0, 0, 1]}
25242525
... ).lazy()

0 commit comments

Comments
 (0)