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 57be463 commit 8912d40Copy full SHA for 8912d40
flask_openapi3/request.py
@@ -9,7 +9,7 @@
9
try:
10
from types import UnionType # Python 3.10+
11
except ImportError:
12
- UnionType = type(Union)
+ UnionType = type(Union) # type: ignore
13
14
from flask import request, current_app, abort
15
from pydantic import ValidationError, BaseModel, RootModel
flask_openapi3/utils.py
@@ -13,7 +13,7 @@
16
17
18
from flask import make_response, current_app
19
from flask.wrappers import Response as FlaskResponse
0 commit comments