aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_verify.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_verify.py
parent268e7948e6fa2ee9871430104f60bdab3212464c (diff)
downloadfuzzycat-75a740a58e4cf5b8480261f0c2795960f66da4a9.tar.gz
fuzzycat-75a740a58e4cf5b8480261f0c2795960f66da4a9.zip
fix imports
Diffstat (limited to 'tests/test_verify.py')
-rw-r--r--tests/test_verify.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_verify.py b/tests/test_verify.py
index 889094f..77eecea 100644
--- a/tests/test_verify.py
+++ b/tests/test_verify.py
@@ -1,7 +1,8 @@
+import csv
import json
import os
-import csv
-from fuzzycat.verify import compare, Status
+
+from fuzzycat.verify import Status, compare
VERIFY_CSV = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data/verify.csv")
RELEASE_ENTITIES_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data/release")