1
0
mirror of synced 2024-06-09 07:47:47 +02:00
mat2/src/parsers/abstract.py

11 lines
253 B
Python
Raw Normal View History

2018-03-06 23:20:18 +01:00
class AbstractParser(object):
def __init__(self, filename: str):
self.filename = filename
self.meta_list = set()
def get_meta(self):
raise NotImplementedError
def remove_all(self):
raise NotImplementedError