Closed skhaz closed 2 years ago
I am using Flask-Pydantic with mypy and I got the error
Flask-Pydantic
mypy
error: Untyped decorator makes function "index" untyped
on the line @validate()
@validate()
@blueprint.post("/") @validate() def index(body: RequestBodyModel) -> UserResponse:
I am using
Flask-Pydantic
withmypy
and I got the erroron the line
@validate()