Skip to content
Prev Previous commit
Next Next commit
remove redundant double quotations around Series
  • Loading branch information
DaanVanHauwermeiren committed Mar 10, 2018
commit 6fa3bc9edcdbe32b169c3364b125c9e35e8f4997
6 changes: 3 additions & 3 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2745,10 +2745,10 @@ def _take(self, indices, axis=0, convert=True, is_copy=False):

def isin(self, values):
"""
Check whether ``values`` are contained in ``Series``.
Check whether ``values`` are contained in Series.

Return a boolean ``Series`` showing whether each element in the
``Series`` is exactly contained in the passed sequence of ``values``.
Return a boolean Series showing whether each element in the Series
is exactly contained in the passed sequence of ``values``.

Parameters
----------
Expand Down