| 172 | |
| 173 | |
| 174 | class DiffRatio(Ratio): |
| 175 | def __init__(self, base: int | str, head: int | str): |
| 176 | if isinstance(base, str) or isinstance(head, str): |
| 177 | super().__init__(0, 0) |
| 178 | else: |
| 179 | super().__init__(head - base, base) |
| 180 | |
| 181 | |
| 182 | class OpcodeStats: |
no outgoing calls
no test coverage detected
searching dependent graphs…