summaryrefslogtreecommitdiff
path: root/libmat2/abstract.py
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor2018-08-30 17:11:35 -0400
committerjvoisin2018-09-01 06:47:22 -0700
commit3e2890eb9e57915cb189d69193f4119069eb2339 (patch)
treeb885001db962079850b829a29b7bb063ddb43d59 /libmat2/abstract.py
parent91e80527fc63140dc0c0a7afebe74f37494abd68 (diff)
three minor spelling fixes
Diffstat (limited to 'libmat2/abstract.py')
-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]