Skip to content

Commit

Permalink
Update py-polars/polars/dataframe/frame.py
Browse files Browse the repository at this point in the history
Co-authored-by: Stijn de Gooijer <[email protected]>
  • Loading branch information
alexander-beedie and stinodego authored Aug 4, 2023
1 parent d82fbdc commit 8cfb8e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4511,7 +4511,7 @@ def limit(self, n: int = 5) -> Self:
return self.head(n)

def drop_nulls(
self, subset: str | Collection[str] | SelectorType | None = None
self, subset: str | Collection[str] | SelectorType | Collection[SelectorType] | None = None
) -> DataFrame:
"""
Drop all rows that contain null values.
Expand Down

0 comments on commit 8cfb8e9

Please sign in to comment.