Skip to content
Snippets Groups Projects
Forked from jvoisin / mat2
622 commits behind the upstream repository.
abstract.py 306 B
class AbstractParser(object):
    def __init__(self, filename: str):
        self.filename = filename
        self.output_filename = filename + '.cleaned'
        self.meta_list = set()

    def get_meta(self):
        raise NotImplementedError

    def remove_all(self):
        raise NotImplementedError