summaryrefslogtreecommitdiff
path: root/libmat2
diff options
context:
space:
mode:
Diffstat (limited to 'libmat2')
-rw-r--r--libmat2/abstract.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmat2/abstract.py b/libmat2/abstract.py
index 7aac284..41a720a 100644
--- a/libmat2/abstract.py
+++ b/libmat2/abstract.py
@@ -16,11 +16,11 @@ class AbstractParser(abc.ABC):
16 16
17 @abc.abstractmethod 17 @abc.abstractmethod
18 def get_meta(self) -> Dict[str, str]: 18 def get_meta(self) -> Dict[str, str]:
19 pass 19 pass # pragma: no cover
20 20
21 @abc.abstractmethod 21 @abc.abstractmethod
22 def remove_all(self) -> bool: 22 def remove_all(self) -> bool:
23 pass 23 pass # pragma: no cover
24 24
25 def remove_all_lightweight(self) -> bool: 25 def remove_all_lightweight(self) -> bool:
26 """ Remove _SOME_ metadata. """ 26 """ Remove _SOME_ metadata. """