From f7f688a8b6af23e1321e60da9392abad657ae112 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Mon, 15 Apr 2024 23:43:24 +0530 Subject: [PATCH 1/2] fixed docstring for pandas.Float32Dtype and pandas.Float64Dtype --- pandas/core/arrays/floating.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandas/core/arrays/floating.py b/pandas/core/arrays/floating.py index 74b8cfb65cbc7..653e63e9d1e2d 100644 --- a/pandas/core/arrays/floating.py +++ b/pandas/core/arrays/floating.py @@ -135,6 +135,12 @@ class FloatingArray(NumericArray): ------- None +See Also +-------- +CategoricalDtype : Type for categorical data with the categories and orderedness. +IntegerDtype : An ExtensionDtype to hold a single size & kind of integer dtype. +StringDtype : An ExtensionDtype for string data. + Examples -------- For Float32Dtype: From a380b5c9e7de284bd88800b8fcf816a8b968b937 Mon Sep 17 00:00:00 2001 From: Tuhin Sharma Date: Mon, 15 Apr 2024 23:46:31 +0530 Subject: [PATCH 2/2] removed methods pandas.Float32Dtype and pandas.Float64Dtype --- ci/code_checks.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 01baadab67dbd..66f6bfd7195f9 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -153,8 +153,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.DatetimeTZDtype SA01" \ -i "pandas.DatetimeTZDtype.tz SA01" \ -i "pandas.DatetimeTZDtype.unit SA01" \ - -i "pandas.Float32Dtype SA01" \ - -i "pandas.Float64Dtype SA01" \ -i "pandas.Grouper PR02,SA01" \ -i "pandas.HDFStore.append PR01,SA01" \ -i "pandas.HDFStore.get SA01" \