Have click.style return a str (#2981)

This previously was missing a return type and therefore defaulting to
`Any`, but it actually returns a `str`.
This commit is contained in:
Danny Weinberg
2019-05-11 13:20:31 -07:00
committed by Sebastian Rittau
parent 75723e3885
commit b4376fc3d2

View File

@@ -117,7 +117,7 @@ def style(
blink: Optional[bool] = ...,
reverse: Optional[bool] = ...,
reset: bool = ...,
):
) -> str:
...