| 450 | |
| 451 | |
| 452 | class LazyRfc3339UtcTime(object): |
| 453 | def __str__(self): |
| 454 | """Return datetime in RFC3339 UTC Format.""" |
| 455 | iso_formatted_now = datetime.datetime.now( |
| 456 | datetime.timezone.utc, |
| 457 | ).isoformat('T') |
| 458 | return f'{iso_formatted_now!s}Z' |
no outgoing calls
no test coverage detected
searching dependent graphs…