(self)
| 341 | |
| 342 | @property |
| 343 | def archive_dates(self) -> List[datetime]: |
| 344 | return [ |
| 345 | parse_date(result.start_ts) |
| 346 | for method in self.history.keys() |
| 347 | for result in self.history[method] |
| 348 | ] |
| 349 | |
| 350 | @property |
| 351 | def oldest_archive_date(self) -> Optional[datetime]: |
nothing calls this directly
no test coverage detected