Skip to content

Commit a6f146e

Browse files
lalinskysrittau
authored andcommitted
Fix return type of werkzeug's ProxyFix (#3320)
1 parent 6e4708e commit a6f146e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/2and3/werkzeug/middleware/proxy_fix.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ class ProxyFix(object):
2020
x_prefix: int = ...,
2121
) -> None: ...
2222
def get_remote_addr(self, forwarded_for: Iterable[str]) -> Optional[str]: ...
23-
def __call__(self, environ: WSGIEnvironment, start_response: StartResponse) -> WSGIApplication: ...
23+
def __call__(self, environ: WSGIEnvironment, start_response: StartResponse) -> Iterable[bytes]: ...

0 commit comments

Comments
 (0)