Merge pull request #4072 from pallets/typeshed

use _typeshed.wsgi instead of wsgiref.types
This commit is contained in:
David Lord 2021-05-17 16:06:10 -07:00 committed by GitHub
commit b5518e23f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,8 +2,8 @@ import typing as t
if t.TYPE_CHECKING:
from _typeshed.wsgi import WSGIApplication # noqa: F401
from werkzeug.datastructures import Headers # noqa: F401
from wsgiref.types import WSGIApplication # noqa: F401
from .wrappers import Response # noqa: F401
# The possible types that are directly convertible or are a Response object.