From ef5fc92b98c62450c6fcecc8c5f39b014f213c85 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sun, 10 Mar 2019 04:19:29 -0700 Subject: [PATCH] Added missing default value annotation (#2841) --- stdlib/3/email/generator.pyi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stdlib/3/email/generator.pyi b/stdlib/3/email/generator.pyi index d59279980..81e733b7a 100644 --- a/stdlib/3/email/generator.pyi +++ b/stdlib/3/email/generator.pyi @@ -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: ...