Skip to content

Commit

Permalink
Removed doctest skip
Browse files Browse the repository at this point in the history
  • Loading branch information
ugohuche committed Jul 12, 2024
1 parent 4faca7d commit 1c7d7b5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions narwhals/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def mean(self) -> Any:
We can then pass either pandas or Polars to `func`:
>>> func(s_pd) # doctest:+SKIP
>>> func(s_pd)
2.0
>>> func(s_pl)
2.0
Expand All @@ -374,7 +374,7 @@ def count(self) -> Any:
We can then pass either pandas or Polars to `func`:
>>> func(s_pd) # doctest:+SKIP
>>> func(s_pd)
3
>>> func(s_pl)
3
Expand Down Expand Up @@ -405,7 +405,7 @@ def any(self) -> Any:
We can then pass either pandas or Polars to `func`:
>>> func(s_pd) # doctest:+SKIP
>>> func(s_pd)
True
>>> func(s_pl)
True
Expand Down Expand Up @@ -460,7 +460,7 @@ def min(self) -> Any:
We can then pass either pandas or Polars to `func`:
>>> func(s_pd) # doctest:+SKIP
>>> func(s_pd)
1
>>> func(s_pl)
1
Expand All @@ -487,7 +487,7 @@ def max(self) -> Any:
We can then pass either pandas or Polars to `func`:
>>> func(s_pd) # doctest:+SKIP
>>> func(s_pd)
3
>>> func(s_pl)
3
Expand All @@ -514,7 +514,7 @@ def sum(self) -> Any:
We can then pass either pandas or Polars to `func`:
>>> func(s_pd) # doctest:+SKIP
>>> func(s_pd)
6
>>> func(s_pl)
6
Expand Down Expand Up @@ -545,7 +545,7 @@ def std(self, *, ddof: int = 1) -> Any:
We can then pass either pandas or Polars to `func`:
>>> func(s_pd) # doctest:+SKIP
>>> func(s_pd)
1.0
>>> func(s_pl)
1.0
Expand Down

0 comments on commit 1c7d7b5

Please sign in to comment.