summaryrefslogtreecommitdiff
path: root/libmat2/abstract.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmat2/abstract.py')
-rw-r--r--libmat2/abstract.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmat2/abstract.py b/libmat2/abstract.py
index a7c5fa5..8861966 100644
--- a/libmat2/abstract.py
+++ b/libmat2/abstract.py
@@ -35,12 +35,12 @@ class AbstractParser(abc.ABC):
35 35
36 @abc.abstractmethod 36 @abc.abstractmethod
37 def get_meta(self) -> Dict[str, Union[str, dict]]: 37 def get_meta(self) -> Dict[str, Union[str, dict]]:
38 pass # pragma: no cover 38 """Return all the metadata of the current file"""
39 39
40 @abc.abstractmethod 40 @abc.abstractmethod
41 def remove_all(self) -> bool: 41 def remove_all(self) -> bool:
42 """ 42 """
43 Remove all the metadata of the current file
44
43 :raises RuntimeError: Raised if the cleaning process went wrong. 45 :raises RuntimeError: Raised if the cleaning process went wrong.
44 """ 46 """
45 # pylint: disable=unnecessary-pass
46 pass # pragma: no cover