(self)
| 39 | FitGraph.viewMap[cls.internalName] = cls |
| 40 | |
| 41 | def __init__(self): |
| 42 | # Format: {(fit ID, target type, target ID): {(xSpec, ySpec): (xs, ys)}} |
| 43 | self._plotCache = {} |
| 44 | # Format: {(fit ID, target type, target ID): {(xSpec, ySpec): {x: y}}} |
| 45 | self._pointCache = {} |
| 46 | |
| 47 | @property |
| 48 | @abstractmethod |
nothing calls this directly
no outgoing calls
no test coverage detected