(self, graph)
| 25 | class PointGetter(metaclass=ABCMeta): |
| 26 | |
| 27 | def __init__(self, graph): |
| 28 | self.graph = graph |
| 29 | |
| 30 | @abstractmethod |
| 31 | def getRange(self, xRange, miscParams, src, tgt): |
nothing calls this directly
no outgoing calls
no test coverage detected