| 57 | |
| 58 | @dataclass(unsafe_hash=True) |
| 59 | class FunctionProfile: |
| 60 | ncalls: str |
| 61 | tottime: float |
| 62 | percall_tottime: float |
| 63 | cumtime: float |
| 64 | percall_cumtime: float |
| 65 | file_name: str |
| 66 | line_number: int |
| 67 | |
| 68 | @dataclass(unsafe_hash=True) |
| 69 | class StatsProfile: |