You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A timedelta object represents a duration, the difference between two dates or times.
Only days, seconds and microseconds are stored internally. Arguments are converted to those units:
A millisecond is converted to 1000 microseconds.
A minute is converted to 60 seconds.
An hour is converted to 3600 seconds.
A week is converted to 7 days.
and days, seconds and microseconds are then normalized so that the representation is unique, with
0 <= microseconds < 1000000
0 <= seconds < 3600*24 (the number of seconds in one day)
-999999999 <= days <= 999999999
The problem is, that we use microsecond, and divide it by 1000000 - that's all, no other attributes are used in the computation.
The text was updated successfully, but these errors were encountered:
f8a-stacks-report/f8a_report/report_helper.py
Line 235 in c56947e
According to the documentation:
A timedelta object represents a duration, the difference between two dates or times.
Only days, seconds and microseconds are stored internally. Arguments are converted to those units:
and days, seconds and microseconds are then normalized so that the representation is unique, with
The problem is, that we use
microsecond
, and divide it by 1000000 - that's all, no other attributes are used in the computation.The text was updated successfully, but these errors were encountered: