Skip to content
Snippets Groups Projects
Commit d71b7b5e authored by David Trattnig's avatar David Trattnig
Browse files

feat(SimpleUtil): round to seconds

parent 7f88b7f7
No related branches found
No related tags found
No related merge requests found
Pipeline #2617 passed
......@@ -54,6 +54,20 @@ class SimpleUtil:
"""
return datetime.datetime.fromtimestamp(timestamp).strftime("%H:%M:%S")
@staticmethod
def round_seconds(dt: datetime) -> datetime:
"""
Rounds date/time to the nearest second.
Args:
dt (datetime): the date/time object to round
Returns:
datetime: the rounded version
"""
rounded_dt = dt + datetime.timedelta(seconds=0.5)
return rounded_dt.replace(microsecond=0)
@staticmethod
def nano_to_seconds(nanoseconds):
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment