Skip to content

Commit 87b00b4

Browse files
committed
fix: indentation fix for build
1 parent 436f4fb commit 87b00b4

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
@@ -14064,17 +14064,19 @@ def isin(
1406414064
values : iterable, Series, DataFrame or dict
1406514065
The result will only be true at a location if all the
1406614066
labels match.
14067+
1406714068
- If `values` is a Series, the index labels must match.
1406814069
- If `values` is a dict, the keys must be column names,
14069-
which must match.
14070+
which must match.
1407014071
- If `values` is a DataFrame:
14072+
1407114073
* When ``ignore_index=False`` (default), both the index
14072-
and column labels must match, and comparison is done
14073-
elementwise.
14074+
and column labels must match, and comparison is done
14075+
elementwise.
1407414076
* When ``ignore_index=True``, only column labels must
14075-
match. Each element in the DataFrame is compared
14076-
against the set of values in the corresponding column
14077-
of ``values``, ignoring row index alignment.
14077+
match. Each element in the DataFrame is compared
14078+
against the set of values in the corresponding column
14079+
of ``values``, ignoring row index alignment.
1407814080
1407914081
ignore_index : bool, default False
1408014082
*Only valid when `values` is a DataFrame.*

0 commit comments

Comments
 (0)