(self, *args, **kwargs)
| 34 | class FitDamageStatsGraph(FitGraph): |
| 35 | |
| 36 | def __init__(self, *args, **kwargs): |
| 37 | super().__init__(*args, **kwargs) |
| 38 | self._timeCache = TimeCache() |
| 39 | self._projectedCache = ProjectedDataCache() |
| 40 | |
| 41 | def _clearInternalCache(self, reason, extraData): |
| 42 | # Here, we care only about fit changes and graph changes. |
nothing calls this directly
no test coverage detected