Skip to content

Commit

Permalink
fix infinite recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Jul 10, 2024
1 parent 8f2b976 commit d502bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/series/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -3444,7 +3444,7 @@ def has_nulls(self) -> bool:
>>> s[:2].has_nulls()
False
"""
return self.has_nulls()
return self._s.has_nulls()

@deprecate_function(
"Use `has_nulls` instead to check for the presence of null values.",
Expand Down

0 comments on commit d502bda

Please sign in to comment.