Skip to content

Commit a3c4016

Browse files
committed
Merge branch 'feat/folder_path' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into feat/folder_path
2 parents 01fa755 + 1c3305c commit a3c4016

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/opengeodeweb_back/routes/blueprint_routes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ def missing_files():
125125

126126
missing_files = geode_functions.missing_files(
127127
flask.request.json["input_geode_object"],
128-
geode_functions.upload_file_path(UPLOAD_FOLDER, flask.request.json["filename"])
129-
)
128+
geode_functions.upload_file_path(UPLOAD_FOLDER, flask.request.json["filename"]),
129+
)
130130
has_missing_files = missing_files.has_missing_files()
131131

132132
mandatory_files = []

tests/test_models_routes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import src.opengeodeweb_back.geode_functions as geode_functions
66

7+
78
def test_model_mesh_components(client, test_id):
89
route = "/models/vtm_component_indices"
910

0 commit comments

Comments
 (0)