PyZipline/pyzipline/utils.py
SeaswimmerTheFsh 542bd06f09
Some checks failed
Pylint / Pylint (3.12) (push) Failing after 36s
holy changes
2023-12-19 05:36:18 -05:00

9 lines
283 B
Python

from datetime import datetime
def convert_str_to_datetime(date_string: str) -> datetime:
"""Converts a string to a datetime object
:param date_string: String to convert
:return: Datetime object
"""
return datetime.strptime(date_string, '%Y-%m-%dT%H:%M:%S.%fZ')