Added missing default value annotation (#2841)

This commit is contained in:
Eric Traut
2019-03-10 04:19:29 -07:00
committed by Sebastian Rittau
parent 06c682449f
commit ef5fc92b98

View File

@@ -23,6 +23,5 @@ class BytesGenerator:
linesep: Optional[str] = ...) -> None: ...
class DecodedGenerator(Generator):
# TODO `fmt` is positional
def __init__(self, outfp: TextIO, mangle_from_: bool = ...,
maxheaderlen: int = ..., *, fmt: Optional[str]) -> None: ...
maxheaderlen: int = ..., *, fmt: Optional[str] = ...) -> None: ...