fix(Missing annotation): missing annotations added on routing module. (#71)

This commit is contained in:
Marcos Schroh 2018-09-26 16:30:38 +02:00 committed by Tom Christie
parent 12e4ef60d7
commit a24aa3dfe7
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class Router:
class ProtocolRouter:
def __init__(self, protocols: typing.Dict[str, ASGIApp]):
def __init__(self, protocols: typing.Dict[str, ASGIApp]) -> None:
self.protocols = protocols
def __call__(self, scope: Scope) -> ASGIInstance: