Skip to content

Commit fa1f22f

Browse files
committed
Fixed issues after the review.
1 parent 4393a48 commit fa1f22f

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

ci/code_checks.sh

-3
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
104104
-i "pandas.Series.sparse.npoints SA01" \
105105
-i "pandas.Series.sparse.sp_values SA01" \
106106
-i "pandas.Timedelta.components SA01" \
107-
-i "pandas.Timedelta.max PR02" \
108-
-i "pandas.Timedelta.min PR02" \
109-
-i "pandas.Timedelta.resolution PR02" \
110107
-i "pandas.Timedelta.to_timedelta64 SA01" \
111108
-i "pandas.Timedelta.total_seconds SA01" \
112109
-i "pandas.TimedeltaIndex.to_pytimedelta RT03,SA01" \

pandas/_libs/tslibs/timedeltas.pyx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1857,11 +1857,11 @@ class Timedelta(_Timedelta):
18571857
Values for construction in compat with datetime.timedelta.
18581858
Numpy ints and floats will be coerced to python ints and floats.
18591859
1860-
**Attributes
1861-
--------
1860+
Attributes
1861+
----------
18621862
resolution: Timedelta
1863-
Represents the smallest difference between two time units that can be represented
1864-
by the Timedelta object.
1863+
Represents the smallest difference between two time units that can be
1864+
represented by the Timedelta object.
18651865
Fixed at 0 days 00:00:00.000000001 (1 nanosecond).
18661866
min : Timedelta
18671867
Returns the minimum Timedelta value that can be created or used in

0 commit comments

Comments
 (0)