summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Willhaus <mail@janwillhaus.de>2019-11-02 13:22:13 +0100
committerJan Willhaus <mail@janwillhaus.de>2019-11-02 16:05:15 +0100
commitf4d6373af5256d57e66dcb38aed1044ca94efe64 (patch)
tree14b68297353e69223f55733f02b482566490f1e8
parent2b04b20680f106e2a46cbe8d4f8c802afd26175f (diff)
downloadwarlock-f4d6373af5256d57e66dcb38aed1044ca94efe64.tar.gz
Apply isort import order fixes enforced by pre-commit hook
-rw-r--r--tests/test_core.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index c363950..daa458c 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -13,16 +13,14 @@
# limitations under the License.
import copy
-import unittest
-import os
-
import json
+import os
+import unittest
import six
import warlock
-
fixture = {
"name": "Country",
"properties": {"name": {"type": "string"}, "population": {"type": "integer"}},