If a datetime string like 2023-11-15T08:00:00 is provided read_datetime_string_as_utc() fails because the time format string is currently TIME_FORMAT = '%Y-%m-%dT%H:%M:%S.%f'.
Modify read_datetime_string_as_utc() so that it can also handle datetime strings without microseconds.
If a datetime string like
2023-11-15T08:00:00
is providedread_datetime_string_as_utc()
fails because the time format string is currentlyTIME_FORMAT = '%Y-%m-%dT%H:%M:%S.%f'
.Modify
read_datetime_string_as_utc()
so that it can also handle datetime strings without microseconds.