File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 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
857857
858858 MSG=' Partially validate docstrings (SA01)' ; echo $MSG
859859 $BASE_DIR /scripts/validate_docstrings.py --format=actions --errors=SA01 --ignore_functions \
860- pandas.BooleanDtype\
861860 pandas.Categorical.__array__\
862861 pandas.Categorical.as_ordered\
863862 pandas.Categorical.as_unordered\
@@ -1169,7 +1168,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
11691168 pandas.Series.update\
11701169 pandas.Series.var\
11711170 pandas.SparseDtype\
1172- pandas.StringDtype\
11731171 pandas.Timedelta\
11741172 pandas.Timedelta.as_unit\
11751173 pandas.Timedelta.asm8\
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ class BooleanDtype(BaseMaskedDtype):
5656 -------
5757 None
5858
59+ See Also
60+ --------
61+ StringDtype : Extension dtype for string data.
62+
5963 Examples
6064 --------
6165 >>> pd.BooleanDtype()
Original file line number Diff line number Diff line change @@ -92,6 +92,10 @@ class StringDtype(StorageExtensionDtype):
9292 -------
9393 None
9494
95+ See Also
96+ --------
97+ BooleanDtype : Extension dtype for boolean data.
98+
9599 Examples
96100 --------
97101 >>> pd.StringDtype()
You can’t perform that action at this time.
0 commit comments