Skip to content

Commit bdd8108

Browse files
committed
Updated BooleanDTyepe docstring
1 parent 486d40c commit bdd8108

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/core/arrays/boolean.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ class BooleanDtype(BaseMaskedDtype):
4545
4646
`BooleanDtype` enables use of null boolean data in pandas structures such as
4747
`Series` and `array`. Internally, it is backed by pandas BooleanArray,
48-
which stores data using two numpy boolean arrays: one to store values('True'/'False')
49-
and a mask to indicate missing values (`pd.NA`)
48+
which stores data using two numpy boolean arrays: one to store values
49+
('True'/'False') and a mask to indicate missing values (`pd.NA`)
5050
5151
.. warning::
5252
@@ -84,7 +84,6 @@ class BooleanDtype(BaseMaskedDtype):
8484
BooleanDtype
8585
"""
8686

87-
8887
name: ClassVar[str] = "boolean"
8988

9089
# The value used to fill '_data' to avoid upcasting

0 commit comments

Comments
 (0)