diff options
| author | Jason Smalls | 2023-07-11 21:35:04 +0200 |
|---|---|---|
| committer | jvoisin | 2023-07-11 21:35:04 +0200 |
| commit | a0c97b25c46af07408ae1fd364090077fe600538 (patch) | |
| tree | e7441ecdd5e93656b6a5436627e924fc2c4514c4 | |
| parent | 1bcb945360e757e5fa881dc274d9dae8dd825afb (diff) | |
Add a variant mimetype for bmp
| -rw-r--r-- | libmat2/harmless.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat2/harmless.py b/libmat2/harmless.py index 42b6eda..7409784 100644 --- a/libmat2/harmless.py +++ b/libmat2/harmless.py | |||
| @@ -5,7 +5,7 @@ from . import abstract | |||
| 5 | 5 | ||
| 6 | class HarmlessParser(abstract.AbstractParser): | 6 | class HarmlessParser(abstract.AbstractParser): |
| 7 | """ This is the parser for filetypes that can not contain metadata. """ | 7 | """ This is the parser for filetypes that can not contain metadata. """ |
| 8 | mimetypes = {'text/plain', 'image/x-ms-bmp'} | 8 | mimetypes = {'text/plain', 'image/x-ms-bmp', 'image/bmp'} |
| 9 | 9 | ||
| 10 | def get_meta(self) -> Dict[str, Union[str, Dict]]: | 10 | def get_meta(self) -> Dict[str, Union[str, Dict]]: |
| 11 | return dict() | 11 | return dict() |
