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:16:13 +0100
commit5bc798a293ed75dd23254a017e34a1ab08fab735 (patch)
tree14b68297353e69223f55733f02b482566490f1e8
parenta32e61e9cdf2eababb568659766688a731b121cb (diff)
downloadwarlock-5bc798a293ed75dd23254a017e34a1ab08fab735.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"}},