Contents
import abc [docs] class ResultsExtractor(abc.ABC): r"""extractor of the results of an inversion""" [docs] @abc.abstractmethod def main(self, **kwargs): pass