Skip to content

Commit e713596

Browse files
committed
docstring formatting
1 parent da1ec73 commit e713596

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pandas/core/arrays/boolean.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ class BooleanDtype(BaseMaskedDtype):
6363
-------
6464
None
6565
66+
See Also
67+
--------
68+
BooleanArray : Array of boolean (True/False) data with missing values.
69+
Int64Dtype : Extension dtype for int64 integer data.
70+
StringDtype : Extension dtype for string data.
71+
6672
Examples
6773
--------
6874
>>> pd.BooleanDtype()
@@ -78,11 +84,6 @@ class BooleanDtype(BaseMaskedDtype):
7884
[True, False, <NA>]
7985
Length: 3, dtype: boolean
8086
81-
See Also
82-
--------
83-
BooleanArray : Array of boolean (True/False) data with missing values.
84-
Int64Dtype : Extension dtype for int64 integer data.
85-
StringDtype : Extension dtype for string data.
8687
"""
8788

8889
name: ClassVar[str] = "boolean"

0 commit comments

Comments
 (0)