diff --git a/stdlib/2/textwrap.pyi b/stdlib/2/textwrap.pyi index 477cab9b7..df8afa624 100644 --- a/stdlib/2/textwrap.pyi +++ b/stdlib/2/textwrap.pyi @@ -1,4 +1,4 @@ -from typing import Any +from typing import Any, AnyStr class _unicode: ... @@ -26,4 +26,4 @@ class TextWrapper: def wrap(text, width=..., **kwargs): ... def fill(text, width=..., **kwargs): ... -def dedent(text): ... +def dedent(text: AnyStr) -> AnyStr: ...