mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-08 08:53:10 -05:00
9 lines
206 B
Python
9 lines
206 B
Python
import collections
|
|
|
|
Cron = collections.namedtuple("Cron", "hours minutes")
|
|
|
|
|
|
def cron_parser(time_str: str) -> Cron:
|
|
time = time_str.split(":")
|
|
return Cron(hours=int(time[0]), minutes=int(time[1]))
|