Skip to content

Commit 7e72896

Browse files
committed
fix: indentation fix for build
1 parent bb889c6 commit 7e72896

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
@@ -13933,17 +13933,19 @@ def isin(
1393313933
values : iterable, Series, DataFrame or dict
1393413934
The result will only be true at a location if all the
1393513935
labels match.
13936+
1393613937
- If `values` is a Series, the index labels must match.
1393713938
- If `values` is a dict, the keys must be column names,
13938-
which must match.
13939+
which must match.
1393913940
- If `values` is a DataFrame:
13941+
1394013942
* When ``ignore_index=False`` (default), both the index
13941-
and column labels must match, and comparison is done
13942-
elementwise.
13943+
and column labels must match, and comparison is done
13944+
elementwise.
1394313945
* When ``ignore_index=True``, only column labels must
13944-
match. Each element in the DataFrame is compared
13945-
against the set of values in the corresponding column
13946-
of ``values``, ignoring row index alignment.
13946+
match. Each element in the DataFrame is compared
13947+
against the set of values in the corresponding column
13948+
of ``values``, ignoring row index alignment.
1394713949
1394813950
ignore_index : bool, default False
1394913951
*Only valid when `values` is a DataFrame.*

0 commit comments

Comments
 (0)