1
0
mirror of synced 2024-06-15 18:49:50 +02:00
mat2/libmat2/harmless.py
2022-08-28 22:29:06 +02:00

16 lines
426 B
Python

import shutil
from typing import Union
from . import abstract
class HarmlessParser(abstract.AbstractParser):
""" This is the parser for filetypes that can not contain metadata. """
mimetypes = {'text/plain', 'image/x-ms-bmp'}
def get_meta(self) -> dict[str, Union[str, dict]]:
return dict()
def remove_all(self) -> bool:
shutil.copy(self.filename, self.output_filename)
return True