summaryrefslogtreecommitdiff
path: root/libmat2/abstract.py
diff options
context:
space:
mode:
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 b7ccae9..7aac284 100644
--- a/libmat2/abstract.py
+++ b/libmat2/abstract.py
@@ -1,6 +1,6 @@
1import abc 1import abc
2import os 2import os
3from typing import Set 3from typing import Set, Dict
4 4
5assert Set # make pyflakes happy 5assert Set # make pyflakes happy
6 6
@@ -15,7 +15,7 @@ class AbstractParser(abc.ABC):
15 self.output_filename = fname + '.cleaned' + extension 15 self.output_filename = fname + '.cleaned' + extension
16 16
17 @abc.abstractmethod 17 @abc.abstractmethod
18 def get_meta(self) -> dict: 18 def get_meta(self) -> Dict[str, str]:
19 pass 19 pass
20 20
21 @abc.abstractmethod 21 @abc.abstractmethod