diff options
| -rw-r--r-- | libmat2/archive.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libmat2/archive.py b/libmat2/archive.py index 15f9d49..9897c10 100644 --- a/libmat2/archive.py +++ b/libmat2/archive.py | |||
| @@ -47,8 +47,9 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser): | |||
| 47 | 47 | ||
| 48 | def __init__(self, filename): | 48 | def __init__(self, filename): |
| 49 | super().__init__(filename) | 49 | super().__init__(filename) |
| 50 | self.archive_class = None # type: Optional[ArchiveClass] | 50 | # We ignore typing here because mypy is too stupid |
| 51 | self.member_class = None # type: Optional[ArchiveMember] | 51 | self.archive_class = None # type: ignore |
| 52 | self.member_class = None # type: ignore | ||
| 52 | 53 | ||
| 53 | # Those are the files that have a format that _isn't_ | 54 | # Those are the files that have a format that _isn't_ |
| 54 | # supported by MAT2, but that we want to keep anyway. | 55 | # supported by MAT2, but that we want to keep anyway. |
