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 b6554e1 commit 0c56ec9Copy full SHA for 0c56ec9
mindee/parsing/common/execution.py
@@ -80,4 +80,5 @@ def parse_date(date_string: Optional[str]) -> Optional[datetime]:
80
"""Shorthand to parse the date, if present."""
81
if not date_string:
82
return None
83
+ date_string = date_string.replace("Z", "+00:00")
84
return datetime.fromisoformat(date_string)
0 commit comments