From ffb9108ae7c28e71c1e925270dff8d69181a0b1c Mon Sep 17 00:00:00 2001 From: Atsushi Odagiri Date: Sun, 28 Jan 2018 19:38:33 +0900 Subject: [PATCH] flake8 --- webdispatch/methoddispatcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webdispatch/methoddispatcher.py b/webdispatch/methoddispatcher.py index efdfdec..6215387 100644 --- a/webdispatch/methoddispatcher.py +++ b/webdispatch/methoddispatcher.py @@ -21,7 +21,7 @@ def detect_view_name(self, environ: Dict[str, Any]) -> str: def on_view_not_found( self, _, start_response: Callable[[str, List[Tuple[str, str]]], None], - ) -> Iterable[bytes]: + ) -> Iterable[bytes]: """ called when valid view is not found """ start_response( @@ -67,7 +67,7 @@ def detect_view_name(self, environ: Dict[str, Any]) -> str: def on_view_not_found( self, environ: Dict[str, Any], start_response: Callable[[str, List[Tuple[str, str]]], None], - ) -> Iterable[bytes]: + ) -> Iterable[bytes]: """ called when action is not found """ start_response( "404 Not Found",