From 2cf26f156eab7bdac6cbfb115e75f042fb1b0d66 Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Wed, 22 Jul 2020 23:00:49 +0200 Subject: [PATCH] Fix type hint --- htmlgen/form.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htmlgen/form.pyi b/htmlgen/form.pyi index 39e1ab7..7efb64b 100644 --- a/htmlgen/form.pyi +++ b/htmlgen/form.pyi @@ -14,7 +14,7 @@ class Form(Element): url: str target: str encryption_type: str - autocomplete: Optional[str] + autocomplete: Optional[Autocomplete] multipart: bool def __init__(self, method: str = ..., url: str = ...) -> None: ... def set_blank_target(self) -> None: ...