(self, *args: str, **kwargs: str)
| 267 | return self.application.settings |
| 268 | |
| 269 | def _unimplemented_method(self, *args: str, **kwargs: str) -> None: |
| 270 | raise HTTPError(405) |
| 271 | |
| 272 | head = _unimplemented_method # type: Callable[..., Optional[Awaitable[None]]] |
| 273 | get = _unimplemented_method # type: Callable[..., Optional[Awaitable[None]]] |