summaryrefslogtreecommitdiff
path: root/libmat2/abstract.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmat2/abstract.py')
-rw-r--r--libmat2/abstract.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/libmat2/abstract.py b/libmat2/abstract.py
index c531fbd..adf384a 100644
--- a/libmat2/abstract.py
+++ b/libmat2/abstract.py
@@ -34,7 +34,10 @@ class AbstractParser(abc.ABC):
34 34
35 @abc.abstractmethod 35 @abc.abstractmethod
36 def get_meta(self) -> Dict[str, Union[str, Dict]]: 36 def get_meta(self) -> Dict[str, Union[str, Dict]]:
37 """Return all the metadata of the current file""" 37 """Return all the metadata of the current file
38
39 :raises RuntimeError: Raised if the cleaning process went wrong.
40 """
38 41
39 @abc.abstractmethod 42 @abc.abstractmethod
40 def remove_all(self) -> bool: 43 def remove_all(self) -> bool: