File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
248
248
-i " pandas.Timestamp.utctimetuple SA01" \
249
249
-i " pandas.Timestamp.value GL08" \
250
250
-i " pandas.Timestamp.year GL08" \
251
- -i " pandas.api.extensions.ExtensionArray.dropna RT03,SA01" \
252
251
-i " pandas.api.extensions.ExtensionArray.dtype SA01" \
253
252
-i " pandas.api.extensions.ExtensionArray.duplicated RT03,SA01" \
254
253
-i " pandas.api.extensions.ExtensionArray.fillna SA01" \
Original file line number Diff line number Diff line change @@ -1160,6 +1160,16 @@ def dropna(self) -> Self:
1160
1160
1161
1161
Returns
1162
1162
-------
1163
+ Self
1164
+ An ExtensionArray of the same type as the original but with all
1165
+ NA values removed.
1166
+
1167
+ See Also
1168
+ --------
1169
+ Series.dropna : Remove missing values from a Series.
1170
+ DataFrame.dropna : Remove missing values from a DataFrame.
1171
+ api.extensions.ExtensionArray.isna : Check for missing values in
1172
+ an ExtensionArray.
1163
1173
1164
1174
Examples
1165
1175
--------
You can’t perform that action at this time.
0 commit comments