1
0
mirror of synced 2024-06-22 11:42:46 +02:00
mat2/libmat2/harmless.py

16 lines
395 B
Python
Raw Normal View History

2018-07-06 00:42:09 +02:00
import shutil
2018-06-04 22:54:01 +02:00
from typing import Dict
2018-03-31 15:46:50 +02:00
from . import abstract
2018-03-31 15:46:50 +02:00
class HarmlessParser(abstract.AbstractParser):
2018-04-02 23:40:08 +02:00
""" This is the parser for filetypes that do not contain metadata. """
mimetypes = {'text/plain', }
2018-03-31 15:46:50 +02:00
2018-06-04 22:54:01 +02:00
def get_meta(self) -> Dict[str, str]:
2018-03-31 15:46:50 +02:00
return dict()
2018-06-04 22:54:01 +02:00
def remove_all(self) -> bool:
2018-07-06 00:42:09 +02:00
shutil.copy(self.filename, self.output_filename)
2018-03-31 15:46:50 +02:00
return True