summaryrefslogtreecommitdiff
path: root/libmat2/abstract.py
diff options
context:
space:
mode:
authorjvoisin2019-05-09 09:41:05 +0200
committerjvoisin2019-05-09 09:41:05 +0200
commit97abafdc5824936c3a72136c3f398eb3dbdfec3c (patch)
tree753dbb54472f737614399d4d40cf95583ab96ad4 /libmat2/abstract.py
parentf1a06e805b824cf366af43d51bec2b92b5cefdc8 (diff)
Minor code cleanup
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