From d1392de6f526cd4ff9fb27759343df861d17a2d4 Mon Sep 17 00:00:00 2001
From: jvoisin <julien.voisin@dustri.org>
Date: Mon, 4 Jun 2018 20:43:28 +0200
Subject: [PATCH] Make pyflakes happier

---
 libmat2/abstract.py | 2 ++
 1 file changed, 2 insertions(+)

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
 import os
 from typing import Set
 
+assert Set  # make pyflakes happy
+
 
 class AbstractParser(abc.ABC):
     meta_list = set()  # type: Set[str]
-- 
GitLab