We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4d0964 commit f85df93Copy full SHA for f85df93
ultimatepython/advanced/date_time.py
@@ -90,6 +90,8 @@ def main():
90
utc_epoch_new_two = get_utc_now_as_epoch()
91
utc_epoch_new_one = convert_dt_to_utc_epoch(utc_dt_new_one)
92
assert utc_epoch_new_two > utc_epoch_new_one > naive_dt_epoch
93
+ utc_dt_new_two = convert_utc_epoch_to_dt(utc_epoch_new_two)
94
+ assert utc_dt_new_two > utc_dt_new_one > utc_dt
95
96
97
if __name__ == "__main__":
0 commit comments