lint error fixed

This commit is contained in:
harsh vijay 2017-04-29 03:49:08 +05:30 committed by GitHub
parent 36118973d9
commit 6e03231d25
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class ViewSwapCase(contentviews.View):
prompt = ("swap case text", "z")
content_types = ["text/plain"]
def __call__(self, data: bytes, **metadata) -> Tuple[str,Iterable[List[Tuple[str, AnyStr]]]]:
def __call__(self, data: bytes, **metadata) -> Tuple[str, Iterable[List[Tuple[str, AnyStr]]]]:
return "case-swapped text", contentviews.format_text(data.swapcase())