(self, scope: Scope)
| 165 | |
| 166 | class BaseRoute: |
| 167 | def matches(self, scope: Scope) -> tuple[Match, Scope]: |
| 168 | raise NotImplementedError() # pragma: no cover |
| 169 | |
| 170 | def url_path_for(self, name: str, /, **path_params: Any) -> URLPath: |
| 171 | raise NotImplementedError() # pragma: no cover |