diff options
Diffstat (limited to 'libmat2/abstract.py')
| -rw-r--r-- | libmat2/abstract.py | 4 |
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 @@ | |||
| 1 | import abc | 1 | import abc |
| 2 | import os | 2 | import os |
| 3 | from typing import Set | 3 | from typing import Set, Dict |
| 4 | 4 | ||
| 5 | assert Set # make pyflakes happy | 5 | assert 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 |
