Fix python3.7 syntax error
This commit is contained in:
parent
d75740cc3c
commit
17c9444b80
|
@ -6,6 +6,12 @@
|
|||
|
||||
- n/a
|
||||
|
||||
### v0.8.1 (2021-01-06)
|
||||
|
||||
### Changes
|
||||
|
||||
- Remove new type hint syntax that was causing an error in python 3.7.
|
||||
|
||||
### v0.8.0 (2021-01-06)
|
||||
|
||||
#### Changes
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.8.0"
|
||||
__version__ = "0.8.1"
|
||||
|
|
|
@ -188,7 +188,7 @@ class StaticDirectoryApplication(JetforceApplication):
|
|||
|
||||
def cgi_body_generator(
|
||||
self,
|
||||
proc: subprocess.Popen[bytes],
|
||||
proc: subprocess.Popen,
|
||||
) -> typing.Iterator[typing.Union[bytes, Deferred]]:
|
||||
"""
|
||||
Non-blocking read from the stdout of the CGI process and pipe it
|
||||
|
|
Loading…
Reference in New Issue