Fix the return type of textwrap.wrap (#1813)

This commit is contained in:
rchen152
2018-01-04 16:15:17 -08:00
committed by Matthias Kramm
parent f6b60cb3ea
commit 592bdcc8a6

View File

@@ -46,7 +46,7 @@ def wrap(
fix_sentence_endings: bool = ...,
break_long_words: bool = ...,
drop_whitespace: bool = ...,
break_on_hyphens: bool = ...) -> AnyStr:
break_on_hyphens: bool = ...) -> List[AnyStr]:
...
def fill(