1
0
Fork 0
mirror of synced 2025-07-03 11:57:26 +02:00

Sort the output of mat2 -l

This commit is contained in:
jvoisin 2018-06-04 23:32:13 +02:00
parent 6a1b0b31f0
commit 8368de7fa7
2 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import abc
import os
from typing import Set
from typing import Set, Dict
assert Set # make pyflakes happy
@ -15,7 +15,7 @@ class AbstractParser(abc.ABC):
self.output_filename = fname + '.cleaned' + extension
@abc.abstractmethod
def get_meta(self) -> dict:
def get_meta(self) -> Dict[str, str]:
pass
@abc.abstractmethod