fix: fixed utils.convert_datetime_to_str

This commit is contained in:
Seaswimmer 2023-12-22 13:48:46 -05:00
parent 9794552632
commit a6d127a903
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -21,4 +21,4 @@ def convert_datetime_to_str(datetime: datetime) -> str:
Returns: Returns:
str: Converted date string str: Converted date string
""" """
return datetime.now().strftime('%Y-%m-%dT%H:%M:%S.%fZ') return datetime.strftime('%Y-%m-%dT%H:%M:%S.%f+00:00')