Skip to content

Commit 6fa3bc9

Browse files
remove redundant double quotations around Series
1 parent ea48bf0 commit 6fa3bc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/series.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2745,10 +2745,10 @@ def _take(self, indices, axis=0, convert=True, is_copy=False):
27452745

27462746
def isin(self, values):
27472747
"""
2748-
Check whether ``values`` are contained in ``Series``.
2748+
Check whether ``values`` are contained in Series.
27492749
2750-
Return a boolean ``Series`` showing whether each element in the
2751-
``Series`` is exactly contained in the passed sequence of ``values``.
2750+
Return a boolean Series showing whether each element in the Series
2751+
is exactly contained in the passed sequence of ``values``.
27522752
27532753
Parameters
27542754
----------

0 commit comments

Comments
 (0)