Skip to content

Commit 0c4404b

Browse files
roshni-bWillAyd
authored andcommitted
DOC: Fixed PR06 errors in pandas.api.extensions.ExtensionArray (#28885)
1 parent eca6079 commit 0c4404b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/arrays/base.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def _from_sequence(cls, scalars, dtype=None, copy=False):
177177
dtype : dtype, optional
178178
Construct for this particular dtype. This should be a Dtype
179179
compatible with the ExtensionArray.
180-
copy : boolean, default False
180+
copy : bool, default False
181181
If True, copy the underlying data.
182182
183183
Returns
@@ -200,7 +200,7 @@ def _from_sequence_of_strings(cls, strings, dtype=None, copy=False):
200200
dtype : dtype, optional
201201
Construct for this particular dtype. This should be a Dtype
202202
compatible with the ExtensionArray.
203-
copy : boolean, default False
203+
copy : bool, default False
204204
If True, copy the underlying data.
205205
206206
Returns
@@ -769,7 +769,7 @@ def take(
769769
770770
Parameters
771771
----------
772-
indices : sequence of integers
772+
indices : sequence of int
773773
Indices to be taken.
774774
allow_fill : bool, default False
775775
How to handle negative values in `indices`.

0 commit comments

Comments
 (0)