From 6e03231d255344f6f84643656ba0be802624aa8c Mon Sep 17 00:00:00 2001 From: harsh vijay Date: Sat, 29 Apr 2017 03:49:08 +0530 Subject: lint error fixed --- examples/simple/custom_contentview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple/custom_contentview.py b/examples/simple/custom_contentview.py index 6fb51aaa..289e1efe 100644 --- a/examples/simple/custom_contentview.py +++ b/examples/simple/custom_contentview.py @@ -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()) -- cgit v1.2.3