Skip to content

Commit 86f0e86

Browse files
lint
1 parent cd13e57 commit 86f0e86

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/core/series.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4630,14 +4630,14 @@ def isin(self, values) -> "Series":
46304630
4 True
46314631
5 False
46324632
Name: animal, dtype: bool
4633-
4633+
46344634
Strings and integers are distinct and are therefore not comparable:
4635-
4635+
46364636
>>>import pandas as pd
4637-
pd.Series([1]).isin(['1'])
4637+
pd.Series([1]).isin(['1'])
46384638
0 False
46394639
dtype: bool
4640-
pd.Series([1.1]).isin(['1.1'])
4640+
pd.Series([1.1]).isin(['1.1'])
46414641
0 False
46424642
dtype: bool
46434643
"""

0 commit comments

Comments
 (0)