Coverage for src/pymmails/grabber/additional_mime_type.py: 100%

1 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-07-04 01:15 +0200

1""" 

2@file 

3@brief additional mapping between mime types and extensions 

4""" 

5 

6additional_mime_type_ext_type = { 

7 "vnd.oasis.opendocument.text": ".odt", 

8 "vnd.oasis.opendocument.spreadsheet": ".ods", 

9 "vnd.oasis.opendocument.presentation": ".odp", 

10 "vnd.oasis.opendocument.graphics": ".odg", 

11 "vnd.oasis.opendocument.chart": ".odc", 

12 "vnd.oasis.opendocument.formula": ".odf", 

13 "vnd.oasis.opendocument.database": ".odb", 

14 "vnd.oasis.opendocument.image": ".odi", 

15 "vnd.oasis.opendocument.text-master": ".odm", 

16}