Skip to content

Commit 3500144

Browse files
committed
fixed double quote
1 parent 3971071 commit 3500144

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/_libs/tslibs/timedeltas.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,7 @@ class Timedelta(_Timedelta):
19551955
Timedelta
19561956
The minimum duration supported by Timedelta.
19571957
"""
1958-
return Timedelta(np.timedelta64(np.iinfo(np.int64).min + 1, 'ns'))
1958+
return Timedelta(np.timedelta64(np.iinfo(np.int64).min + 1, "ns"))
19591959

19601960
@property
19611961
def max(self):
@@ -1967,7 +1967,7 @@ class Timedelta(_Timedelta):
19671967
Timedelta
19681968
The maximum duration supported by Timedelta.
19691969
"""
1970-
return Timedelta(np.timedelta64(np.iinfo(np.int64).max, 'ns'))
1970+
return Timedelta(np.timedelta64(np.iinfo(np.int64).max, "ns"))
19711971

19721972
@property
19731973
def resolution(self):
@@ -1979,7 +1979,7 @@ class Timedelta(_Timedelta):
19791979
Timedelta
19801980
The resolution of Timedelta, i.e. Timedelta(nanoseconds=1).
19811981
"""
1982-
return Timedelta(1, unit='ns')
1982+
return Timedelta(1, unit="ns")
19831983

19841984
def __new__(cls, object value=_no_input, unit=None, **kwargs):
19851985
if value is _no_input:

0 commit comments

Comments
 (0)