diff --git a/ci/code_checks.sh b/ci/code_checks.sh index fcbeb20d083d6..43e2259aba8d1 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -109,8 +109,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then -i "pandas.Series.sparse.npoints SA01" \ -i "pandas.Series.sparse.sp_values SA01" \ -i "pandas.Timedelta.components SA01" \ - -i "pandas.Timedelta.max PR02" \ - -i "pandas.Timedelta.min PR02" \ -i "pandas.Timedelta.resolution PR02" \ -i "pandas.Timedelta.to_timedelta64 SA01" \ -i "pandas.Timedelta.total_seconds SA01" \ diff --git a/pandas/_libs/tslibs/timedeltas.pyx b/pandas/_libs/tslibs/timedeltas.pyx index a7bc2de5ad837..94672c37e6d56 100644 --- a/pandas/_libs/tslibs/timedeltas.pyx +++ b/pandas/_libs/tslibs/timedeltas.pyx @@ -1813,7 +1813,7 @@ class Timedelta(_Timedelta): Timedelta is the pandas equivalent of python's ``datetime.timedelta`` and is interchangeable with it in most cases. - Parameters + Attributes ---------- value : Timedelta, timedelta, np.timedelta64, str, or int Input value.