summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-06-10 00:43:25 +0200
committerjvoisin2018-06-10 00:43:25 +0200
commit9c7aa34f506d32564128741e855ea49e8e118211 (patch)
treeffcf0a54f7724872e9222377a864bb2a39af2453
parente81ce6cd1aadc382b37a428d3e030fc33f4464c5 (diff)
Bump a bit the coverage
-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. """