(self, limit: int | None = None)
| 442 | return records[:limit] if limit else records |
| 443 | |
| 444 | def export_records(self, limit: int | None = None) -> list[dict[str, Any]]: |
| 445 | records = self.history(limit=limit) |
| 446 | return [_trace_payload(record) for record in records] |
| 447 | |
| 448 | def recent(self, limit: int = 50, *, errors_only: bool = False) -> list[dict[str, Any]]: |
| 449 | records = self.history() |
nothing calls this directly
no test coverage detected