diff options
Diffstat (limited to 'libmat2/archive.py')
| -rw-r--r-- | libmat2/archive.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libmat2/archive.py b/libmat2/archive.py index 17ec608..5f058b9 100644 --- a/libmat2/archive.py +++ b/libmat2/archive.py | |||
| @@ -72,20 +72,20 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser): | |||
| 72 | def _specific_cleanup(self, full_path: str) -> bool: | 72 | def _specific_cleanup(self, full_path: str) -> bool: |
| 73 | """ This method can be used to apply specific treatment | 73 | """ This method can be used to apply specific treatment |
| 74 | to files present in the archive.""" | 74 | to files present in the archive.""" |
| 75 | # pylint: disable=unused-argument,no-self-use | 75 | # pylint: disable=unused-argument |
| 76 | return True # pragma: no cover | 76 | return True # pragma: no cover |
| 77 | 77 | ||
| 78 | def _specific_get_meta(self, full_path: str, file_path: str) -> dict[str, Any]: | 78 | def _specific_get_meta(self, full_path: str, file_path: str) -> dict[str, Any]: |
| 79 | """ This method can be used to extract specific metadata | 79 | """ This method can be used to extract specific metadata |
| 80 | from files present in the archive.""" | 80 | from files present in the archive.""" |
| 81 | # pylint: disable=unused-argument,no-self-use | 81 | # pylint: disable=unused-argument |
| 82 | return {} # pragma: no cover | 82 | return {} # pragma: no cover |
| 83 | 83 | ||
| 84 | def _final_checks(self) -> bool: | 84 | def _final_checks(self) -> bool: |
| 85 | """ This method is invoked after the file has been cleaned, | 85 | """ This method is invoked after the file has been cleaned, |
| 86 | allowing to run final verifications. | 86 | allowing to run final verifications. |
| 87 | """ | 87 | """ |
| 88 | # pylint: disable=unused-argument,no-self-use | 88 | # pylint: disable=unused-argument |
| 89 | return True | 89 | return True |
| 90 | 90 | ||
| 91 | @staticmethod | 91 | @staticmethod |
