Class for keeping track of an item in inventory.
| 67 | |
| 68 | @dataclass(unsafe_hash=True) |
| 69 | class StatsProfile: |
| 70 | '''Class for keeping track of an item in inventory.''' |
| 71 | total_tt: float |
| 72 | func_profiles: Dict[str, FunctionProfile] |
| 73 | |
| 74 | class Stats: |
| 75 | """This class is used for creating reports from data generated by the |