We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77d713c commit c0b3880Copy full SHA for c0b3880
src/opengeodeweb_back/routes/create/blueprint_create.py
@@ -77,7 +77,9 @@ def create_aoi() -> flask.Response:
77
)
78
def create_voi() -> flask.Response:
79
"""Endpoint to create a Volume of Interest (VOI) as an EdgedCurve3D (a bounding box/prism)."""
80
- json_data = utils_functions.validate_request(flask.request, schemas_dict["create_voi"])
+ json_data = utils_functions.validate_request(
81
+ flask.request, schemas_dict["create_voi"]
82
+ )
83
params = schemas.CreateVoi.from_dict(json_data)
84
85
aoi_data = geode_functions.get_data_info(params.aoi_id)
0 commit comments