File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -564,8 +564,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
564
564
pandas.api.types.is_datetime64_any_dtype \
565
565
pandas.api.types.is_datetime64_ns_dtype \
566
566
pandas.api.types.is_datetime64tz_dtype \
567
- pandas.api.types.is_integer_dtype \
568
- pandas.api.types.is_string_dtype \
569
567
pandas.plotting.andrews_curves \
570
568
pandas.plotting.autocorrelation_plot \
571
569
pandas.plotting.lag_plot \
Original file line number Diff line number Diff line change @@ -523,6 +523,7 @@ def is_string_dtype(arr_or_dtype) -> bool:
523
523
524
524
Examples
525
525
--------
526
+ >>> from pandas.api.types import is_string_dtype
526
527
>>> is_string_dtype(str)
527
528
True
528
529
>>> is_string_dtype(object)
@@ -674,6 +675,7 @@ def is_integer_dtype(arr_or_dtype) -> bool:
674
675
675
676
Examples
676
677
--------
678
+ >>> from pandas.api.types import is_integer_dtype
677
679
>>> is_integer_dtype(str)
678
680
False
679
681
>>> is_integer_dtype(int)
You can’t perform that action at this time.
0 commit comments