Skip to content

Commit cee72ed

Browse files
committed
switch from scientific number notation
1 parent e511f60 commit cee72ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/tslibs/timedeltas.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ cdef class _Timedelta(timedelta):
865865
"""
866866
# GH 31043
867867
# Round down to microseconds to avoid confusing tzinfo.utcoffset
868-
return (self.value - self.value % 1000) / 1e9
868+
return (self.value - self.value % 1000) / 1000000000
869869

870870
def view(self, dtype):
871871
"""

0 commit comments

Comments
 (0)