Skip to content

Commit

Permalink
fix doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
advancedxy committed Dec 20, 2024
1 parent cf2e504 commit 5a8ee7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daft/dataframe/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -2550,7 +2550,7 @@ def intersect_all(self, other: "DataFrame") -> "DataFrame":
>>> import daft
>>> df1 = daft.from_pydict({"a": [1, 2, 2], "b": [4, 6, 6]})
>>> df2 = daft.from_pydict({"a": [1, 1, 2, 2], "b": [4, 4, 6, 6]})
>>> df1.intersect_all(df2).collect()
>>> df1.intersect_all(df2).sort("a").collect()
╭───────┬───────╮
│ a ┆ b │
│ --- ┆ --- │
Expand Down

0 comments on commit 5a8ee7b

Please sign in to comment.