| 56 | |
| 57 | @dataclass(unsafe_hash=True) |
| 58 | class FunctionProfile: |
| 59 | ncalls: str |
| 60 | tottime: float |
| 61 | percall_tottime: float |
| 62 | cumtime: float |
| 63 | percall_cumtime: float |
| 64 | file_name: str |
| 65 | line_number: int |
| 66 | |
| 67 | @dataclass(unsafe_hash=True) |
| 68 | class StatsProfile: |
no outgoing calls
no test coverage detected
searching dependent graphs…