(date_str)
| 47 | |
| 48 | |
| 49 | def parse_iso_datetime(date_str): |
| 50 | return datetime.strptime(date_str, '%Y-%m-%dT%H:%M:%S.%fZ').replace(tzinfo=timezone.utc) |
| 51 | |
| 52 | |
| 53 | def to_iso_string(datetime_value: datetime): |
nothing calls this directly
no outgoing calls
no test coverage detected