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 @@ -193,7 +193,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
193
193
-i " pandas.Timestamp.tzinfo GL08" \
194
194
-i " pandas.Timestamp.value GL08" \
195
195
-i " pandas.Timestamp.year GL08" \
196
- -i " pandas.api.extensions.ExtensionArray.dropna RT03,SA01" \
197
196
-i " pandas.api.extensions.ExtensionArray.dtype SA01" \
198
197
-i " pandas.api.extensions.ExtensionArray.duplicated RT03,SA01" \
199
198
-i " pandas.api.extensions.ExtensionArray.fillna SA01" \
Original file line number Diff line number Diff line change @@ -1175,6 +1175,16 @@ def dropna(self) -> Self:
1175
1175
1176
1176
Returns
1177
1177
-------
1178
+ Self
1179
+ An ExtensionArray of the same type as the original but with all
1180
+ NA values removed.
1181
+
1182
+ See Also
1183
+ --------
1184
+ Series.dropna : Remove missing values from a Series.
1185
+ DataFrame.dropna : Remove missing values from a DataFrame.
1186
+ api.extensions.ExtensionArray.isna : Check for missing values in
1187
+ an ExtensionArray.
1178
1188
1179
1189
Examples
1180
1190
--------
You can’t perform that action at this time.
0 commit comments