diff options
Diffstat (limited to 'libmat2/office.py')
| -rw-r--r-- | libmat2/office.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmat2/office.py b/libmat2/office.py index 0d0c795..5165056 100644 --- a/libmat2/office.py +++ b/libmat2/office.py | |||
| @@ -6,9 +6,9 @@ import datetime | |||
| 6 | import zipfile | 6 | import zipfile |
| 7 | from typing import Dict, Set, Pattern | 7 | from typing import Dict, Set, Pattern |
| 8 | try: # protect against DoS | 8 | try: # protect against DoS |
| 9 | from defusedxml import ElementTree as ET | 9 | from defusedxml import ElementTree as ET # type: ignore |
| 10 | except ImportError: | 10 | except ImportError: |
| 11 | import xml.etree.ElementTree as ET | 11 | import xml.etree.ElementTree as ET # type: ignore |
| 12 | 12 | ||
| 13 | 13 | ||
| 14 | from . import abstract, parser_factory | 14 | from . import abstract, parser_factory |
