diff options
| author | jvoisin | 2018-10-12 11:58:01 +0200 |
|---|---|---|
| committer | jvoisin | 2018-10-12 14:32:09 +0200 |
| commit | 2ba38dd2a18ab57ed7aac7ccdd6a42ff5e4d4eb7 (patch) | |
| tree | 7fe800485f6ea47b21f63195c6dfc2f32e675bfe /libmat2/archive.py | |
| parent | b832a5941458083dd6147efb652036552f95b786 (diff) | |
Bump mypy typing coverage
Diffstat (limited to 'libmat2/archive.py')
| -rw-r--r-- | libmat2/archive.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmat2/archive.py b/libmat2/archive.py index 016142d..f788ecc 100644 --- a/libmat2/archive.py +++ b/libmat2/archive.py | |||
| @@ -4,13 +4,14 @@ import tempfile | |||
| 4 | import os | 4 | import os |
| 5 | import logging | 5 | import logging |
| 6 | import shutil | 6 | import shutil |
| 7 | from typing import Dict, Set, Pattern | 7 | from typing import Dict, Set, Pattern, Union |
| 8 | 8 | ||
| 9 | from . import abstract, UnknownMemberPolicy, parser_factory | 9 | from . import abstract, UnknownMemberPolicy, parser_factory |
| 10 | 10 | ||
| 11 | # Make pyflakes happy | 11 | # Make pyflakes happy |
| 12 | assert Set | 12 | assert Set |
| 13 | assert Pattern | 13 | assert Pattern |
| 14 | assert Union | ||
| 14 | 15 | ||
| 15 | 16 | ||
| 16 | class ArchiveBasedAbstractParser(abstract.AbstractParser): | 17 | class ArchiveBasedAbstractParser(abstract.AbstractParser): |
