Skip to content

Commit 2e338f0

Browse files
committed
fix: indentation fix for build
1 parent d3317dc commit 2e338f0

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

pandas/core/frame.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14106,17 +14106,19 @@ def isin(
1410614106
values : iterable, Series, DataFrame or dict
1410714107
The result will only be true at a location if all the
1410814108
labels match.
14109+
1410914110
- If `values` is a Series, the index labels must match.
1411014111
- If `values` is a dict, the keys must be column names,
14111-
which must match.
14112+
which must match.
1411214113
- If `values` is a DataFrame:
14114+
1411314115
* When ``ignore_index=False`` (default), both the index
14114-
and column labels must match, and comparison is done
14115-
elementwise.
14116+
and column labels must match, and comparison is done
14117+
elementwise.
1411614118
* When ``ignore_index=True``, only column labels must
14117-
match. Each element in the DataFrame is compared
14118-
against the set of values in the corresponding column
14119-
of ``values``, ignoring row index alignment.
14119+
match. Each element in the DataFrame is compared
14120+
against the set of values in the corresponding column
14121+
of ``values``, ignoring row index alignment.
1412014122
1412114123
ignore_index : bool, default False
1412214124
*Only valid when `values` is a DataFrame.*

0 commit comments

Comments
 (0)