Ignore tornado types

Not all supported versions of Tornado include type information.
This commit is contained in:
Correl Roush 2020-11-20 12:49:06 -05:00
parent dea15c3be1
commit 3c325a73ad
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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