(self, *args, **kwargs)
| 31 | class FitWarpTimeGraph(FitGraph): |
| 32 | |
| 33 | def __init__(self, *args, **kwargs): |
| 34 | super().__init__(*args, **kwargs) |
| 35 | self._subspeedCache = SubwarpSpeedCache() |
| 36 | |
| 37 | def _clearInternalCache(self, reason, extraData): |
| 38 | if reason in (GraphCacheCleanupReason.fitChanged, GraphCacheCleanupReason.fitRemoved): |
nothing calls this directly
no test coverage detected