We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c304f4b commit 4d0188eCopy full SHA for 4d0188e
tests/integration_test_data_objects.py
@@ -1,16 +1,17 @@
1
# -*- coding: utf-8 -*-
2
from hashlib import md5
3
4
+import requests
5
+from syncano.models import Object
6
+from tests.integration_test import InstanceMixin, IntegrationTest
7
+
8
try:
9
# python2
10
from StringIO import StringIO
11
except ImportError:
12
# python3
13
from io import StringIO
14
-import requests
-from syncano.models import Object
-from tests.integration_test import InstanceMixin, IntegrationTest
15
16
17
class DataObjectFileTest(InstanceMixin, IntegrationTest):
0 commit comments