summaryrefslogtreecommitdiff
path: root/src/abstract.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/abstract.py')
-rw-r--r--src/abstract.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/abstract.py b/src/abstract.py
index 04c1535..93e8421 100644
--- a/src/abstract.py
+++ b/src/abstract.py
@@ -16,3 +16,7 @@ class AbstractParser(abc.ABC):
16 @abc.abstractmethod 16 @abc.abstractmethod
17 def remove_all(self) -> bool: 17 def remove_all(self) -> bool:
18 pass 18 pass
19
20 def remove_all_lightweight(self) -> bool:
21 """ Remove _SOME_ metadata. """
22 return self.remove_all()