aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_cluster.py
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-11-24 23:53:21 +0100
committerMartin Czygan <martin.czygan@gmail.com>2020-11-24 23:53:21 +0100
commit75a740a58e4cf5b8480261f0c2795960f66da4a9 (patch)
tree8694e65eca5c4d1d61cc60925709ddefb1f86d38 /tests/test_cluster.py
parent268e7948e6fa2ee9871430104f60bdab3212464c (diff)
downloadfuzzycat-75a740a58e4cf5b8480261f0c2795960f66da4a9.tar.gz
fuzzycat-75a740a58e4cf5b8480261f0c2795960f66da4a9.zip
fix imports
Diffstat (limited to 'tests/test_cluster.py')
-rw-r--r--tests/test_cluster.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/test_cluster.py b/tests/test_cluster.py
index f673206..f2ae4a4 100644
--- a/tests/test_cluster.py
+++ b/tests/test_cluster.py
@@ -1,8 +1,11 @@
-import pytest
import collections
-import tempfile
-from fuzzycat.cluster import release_key_title, release_key_title_normalized, release_key_title_nysiis
import os
+import tempfile
+
+import pytest
+
+from fuzzycat.cluster import (release_key_title, release_key_title_normalized,
+ release_key_title_nysiis)
Case = collections.namedtuple("Case", 'input output')