mirror of
https://github.com/correl/tornado-openapi3.git
synced 2024-12-28 03:00:14 +00:00
Ignore tornado types
Not all supported versions of Tornado include type information.
This commit is contained in:
parent
dea15c3be1
commit
3c325a73ad
2 changed files with 4 additions and 4 deletions
|
@ -16,9 +16,9 @@ from openapi_core.validation.request.datatypes import ( # type: ignore
|
|||
OpenAPIRequest,
|
||||
)
|
||||
from openapi_core.validation.request.validators import RequestValidator # type: ignore
|
||||
from tornado.httputil import HTTPHeaders, HTTPServerRequest
|
||||
from tornado.testing import AsyncHTTPTestCase
|
||||
from tornado.web import Application, RequestHandler
|
||||
from tornado.httputil import HTTPHeaders, HTTPServerRequest # type: ignore
|
||||
from tornado.testing import AsyncHTTPTestCase # type: ignore
|
||||
from tornado.web import Application, RequestHandler # type: ignore
|
||||
from werkzeug.datastructures import ImmutableMultiDict
|
||||
|
||||
from tornado_openapi3 import TornadoRequestFactory
|
||||
|
|
|
@ -5,7 +5,7 @@ from openapi_core.validation.request.datatypes import ( # type: ignore
|
|||
OpenAPIRequest,
|
||||
)
|
||||
from openapi_core.validation.request import validators # type: ignore
|
||||
from tornado.httputil import HTTPServerRequest
|
||||
from tornado.httputil import HTTPServerRequest # type: ignore
|
||||
from werkzeug.datastructures import ImmutableMultiDict, Headers
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue