File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -857,7 +857,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
857
857
858
858
MSG=' Partially validate docstrings (SA01)' ; echo $MSG
859
859
$BASE_DIR /scripts/validate_docstrings.py --format=actions --errors=SA01 --ignore_functions \
860
- pandas.BooleanDtype\
861
860
pandas.Categorical.__array__\
862
861
pandas.Categorical.as_ordered\
863
862
pandas.Categorical.as_unordered\
@@ -1169,7 +1168,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
1169
1168
pandas.Series.update\
1170
1169
pandas.Series.var\
1171
1170
pandas.SparseDtype\
1172
- pandas.StringDtype\
1173
1171
pandas.Timedelta\
1174
1172
pandas.Timedelta.as_unit\
1175
1173
pandas.Timedelta.asm8\
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ class BooleanDtype(BaseMaskedDtype):
56
56
-------
57
57
None
58
58
59
+ See Also
60
+ --------
61
+ StringDtype : Extension dtype for string data.
62
+
59
63
Examples
60
64
--------
61
65
>>> pd.BooleanDtype()
Original file line number Diff line number Diff line change @@ -92,6 +92,10 @@ class StringDtype(StorageExtensionDtype):
92
92
-------
93
93
None
94
94
95
+ See Also
96
+ --------
97
+ BooleanDtype : Extension dtype for boolean data.
98
+
95
99
Examples
96
100
--------
97
101
>>> pd.StringDtype()
You can’t perform that action at this time.
0 commit comments