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 52eeb50..cd72f2c 100644
--- a/libmat2/abstract.py
+++ b/libmat2/abstract.py
@@ -6,8 +6,8 @@ assert Set # make pyflakes happy
6 6
7 7
8class AbstractParser(abc.ABC): 8class AbstractParser(abc.ABC):
9 """ This is the base classe of every parser. 9 """ This is the base class of every parser.
10 It might yield `ValueError` on instanciation on invalid files. 10 It might yield `ValueError` on instantiation on invalid files.
11 """ 11 """
12 meta_list = set() # type: Set[str] 12 meta_list = set() # type: Set[str]
13 mimetypes = set() # type: Set[str] 13 mimetypes = set() # type: Set[str]