1
0
mirror of synced 2024-06-11 00:29:51 +02:00
mat2/src/harmless.py

15 lines
351 B
Python
Raw Normal View History

2018-03-31 15:46:50 +02:00
from . import abstract
class HarmlessParser(abstract.AbstractParser):
mimetypes = {'application/xml', 'text/plain', 'application/rdf+xml'}
2018-03-31 15:46:50 +02:00
def __init__(self, filename: str):
self.filename = filename
self.output_filename = filename
def get_meta(self):
return dict()
def remove_all(self):
return True