Skip to content

Commit

Permalink
fix typo for null_count in expr.py (#3578)
Browse files Browse the repository at this point in the history
  • Loading branch information
chitralverma committed Jun 5, 2022
1 parent 6b32fa8 commit 07bb987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/internals/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ def n_unique(self) -> "Expr":
return wrap_expr(self._pyexpr.n_unique())

def null_count(self) -> "Expr":
"""Count unique values."""
"""Count null values."""
return wrap_expr(self._pyexpr.null_count())

def arg_unique(self) -> "Expr":
Expand Down

0 comments on commit 07bb987

Please sign in to comment.