Skip to content

Commit ffa5114

Browse files
committed
rm type ignore
1 parent 0a6b95f commit ffa5114

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/opengeodeweb_back/routes/create/blueprint_create.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def create_point() -> flask.Response:
3737
utils_functions.validate_request(flask.request, create_point_json)
3838

3939
# Extract and validate data from request
40-
params: CreatePointParams = flask.request.get_json() # type: ignore
40+
params: CreatePointParams = flask.request.get_json()
4141
name: str = params["name"] # type: ignore
4242
x: float = params["x"] # type: ignore
4343
y: float = params["y"] # type: ignore
@@ -74,7 +74,7 @@ def create_aoi() -> flask.Response:
7474
utils_functions.validate_request(flask.request, create_aoi_json)
7575

7676
# Extract and validate data from request
77-
params: CreateAOIParams = flask.request.get_json() # type: ignore
77+
params: CreateAOIParams = flask.request.get_json()
7878
name: str = params["name"] # type: ignore
7979
points: list[PointDict] = params["points"] # type: ignore
8080
z: float = params["z"] # type: ignore

0 commit comments

Comments
 (0)