Navigation Menu

Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
aodag committed Jan 28, 2018
1 parent cbd7bda commit ffb9108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webdispatch/methoddispatcher.py
Expand Up @@ -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(
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit ffb9108

Please sign in to comment.