diff options
| author | jvoisin | 2018-06-04 20:43:28 +0200 |
|---|---|---|
| committer | jvoisin | 2018-06-04 20:43:28 +0200 |
| commit | d1392de6f526cd4ff9fb27759343df861d17a2d4 (patch) | |
| tree | c11830587aa9e00538fe548cdde796b9ee1bac73 | |
| parent | 183667a7f907f6d2ebc6abda4bbd774829ddffda (diff) | |
Make pyflakes happier
| -rw-r--r-- | libmat2/abstract.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libmat2/abstract.py b/libmat2/abstract.py index 9cb9320..b7ccae9 100644 --- a/libmat2/abstract.py +++ b/libmat2/abstract.py | |||
| @@ -2,6 +2,8 @@ import abc | |||
| 2 | import os | 2 | import os |
| 3 | from typing import Set | 3 | from typing import Set |
| 4 | 4 | ||
| 5 | assert Set # make pyflakes happy | ||
| 6 | |||
| 5 | 7 | ||
| 6 | class AbstractParser(abc.ABC): | 8 | class AbstractParser(abc.ABC): |
| 7 | meta_list = set() # type: Set[str] | 9 | meta_list = set() # type: Set[str] |
