Skip to content

Commit 7de595e

Browse files
MaxNumeriquegithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent df4be43 commit 7de595e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/opengeodeweb_viewer/config.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ def test_config(path):
3737
raise FileNotFoundError(f"Test data folder not found: {original_data_path}")
3838

3939
valid_extensions = {".vtp", ".vti", ".vtu", ".vtm", ".png", ".jpeg", ".jpg"}
40-
40+
4141
test_ids = ["123456789", "12345678"]
42-
42+
4343
for test_id in test_ids:
4444
test_id_dir = os.path.join(tmp_data_root, test_id)
4545
os.makedirs(test_id_dir, exist_ok=True)
46-
46+
4747
test_project_uuid = "test-project-uuid"
4848
test_data_uuid = "test-data-uuid"
4949
new_structure_dir = os.path.join(tmp_data_root, test_project_uuid, test_data_uuid)
5050
os.makedirs(new_structure_dir, exist_ok=True)
51-
51+
5252
uploads_dir = os.path.join(tmp_data_root, test_project_uuid, "uploads")
5353
os.makedirs(uploads_dir, exist_ok=True)
5454

@@ -65,14 +65,14 @@ def test_config(path):
6565
continue
6666

6767
full_path = os.path.join(root, file_name)
68-
68+
6969
for test_id in test_ids:
7070
test_id_dst = os.path.join(tmp_data_root, test_id, file_name)
7171
copyfile(full_path, test_id_dst)
72-
72+
7373
new_structure_dst = os.path.join(new_structure_dir, file_name)
7474
copyfile(full_path, new_structure_dst)
75-
75+
7676
uploads_dst = os.path.join(uploads_dir, file_name)
7777
copyfile(full_path, uploads_dst)
7878

0 commit comments

Comments
 (0)