Skip to content

Commit 16689d3

Browse files
committed
chore: isort
1 parent a4f3ae0 commit 16689d3

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

mapswipe_workers/mapswipe_workers/project_types/tile_map_service/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
from mapswipe_workers.project_types.tile_server import BaseTileServer
1616
from mapswipe_workers.utils import tile_functions, tile_grouping_functions
1717
from mapswipe_workers.utils.validate_input import (
18+
multipolygon_to_wkt,
1819
save_geojson_to_file,
1920
validate_and_collect_geometries_to_multipolyon,
20-
multipolygon_to_wkt,
2121
)
2222

2323

mapswipe_workers/tests/integration/test_archive_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import time
22
import unittest
33

4-
from tests.integration import set_up, tear_down
54
from mapswipe_workers import auth
65
from mapswipe_workers.config import FIREBASE_DB
76
from mapswipe_workers.firebase_to_postgres import archive_project
7+
from tests.integration import set_up, tear_down
88

99

1010
class TestArchiveProject(unittest.TestCase):

mapswipe_workers/tests/integration/test_create_build_area_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from click.testing import CliRunner
44

5-
from tests.integration import set_up, tear_down
65
from mapswipe_workers import auth, mapswipe_workers
76
from mapswipe_workers.utils.create_directories import create_directories
7+
from tests.integration import set_up, tear_down
88

99

1010
class TestCreateProject(unittest.TestCase):

mapswipe_workers/tests/integration/test_create_project_with_additional_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from click.testing import CliRunner
44

5-
from tests.integration import set_up, tear_down
65
from mapswipe_workers import auth, mapswipe_workers
76
from mapswipe_workers.utils.create_directories import create_directories
7+
from tests.integration import set_up, tear_down
88

99

1010
def setUpProjectDraft(project_type_name, file_name):

mapswipe_workers/tests/integration/test_update_user_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import unittest
22
import uuid
33

4-
from tests.integration import set_up, tear_down
54
from mapswipe_workers import auth
65
from mapswipe_workers.firebase_to_postgres import update_data
6+
from tests.integration import set_up, tear_down
77

88

99
class TestUpdateUserData(unittest.TestCase):

mapswipe_workers/tests/unittests/test_utils_validate_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
from mapswipe_workers.definitions import CustomError
88
from mapswipe_workers.utils.validate_input import (
9+
multipolygon_to_wkt,
910
save_geojson_to_file,
1011
validate_and_collect_geometries_to_multipolyon,
11-
multipolygon_to_wkt,
1212
)
1313

1414
CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))

0 commit comments

Comments
 (0)