(self, scope: Scope, receive: Receive, send: Send)
| 2053 | return None |
| 2054 | |
| 2055 | async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 2056 | await self.app(scope, receive, send) |
| 2057 | |
| 2058 | def url_path_for(self, name: str, /, **path_params: Any) -> URLPath: |
| 2059 | raise NoMatchFound(name, path_params) |