Fix formatting

This commit is contained in:
Thomas Sileo 2019-07-13 00:14:29 +02:00
parent b7829ed706
commit 5effab8b90

View file

@ -16,7 +16,7 @@ def strtobool(s: str) -> bool:
raise ValueError(f"cannot convert {s} to bool") raise ValueError(f"cannot convert {s} to bool")
def parse_datetime(s :str) -> datetime: def parse_datetime(s: str) -> datetime:
# Parses the datetime with dateutil # Parses the datetime with dateutil
dt = parser.parse(s) dt = parser.parse(s)