Class for keeping track of an item in inventory.
| 66 | |
| 67 | @dataclass(unsafe_hash=True) |
| 68 | class StatsProfile: |
| 69 | '''Class for keeping track of an item in inventory.''' |
| 70 | total_tt: float |
| 71 | func_profiles: dict[str, FunctionProfile] |
| 72 | |
| 73 | class Stats: |
| 74 | """This class is used for creating reports from data generated by the |
no outgoing calls
no test coverage detected
searching dependent graphs…