(self, method: Callable[..., str])
| 1814 | return render |
| 1815 | |
| 1816 | def _ui_method(self, method: Callable[..., str]) -> Callable[..., str]: |
| 1817 | return lambda *args, **kwargs: method(self, *args, **kwargs) |
| 1818 | |
| 1819 | def _clear_representation_headers(self) -> None: |
| 1820 | # 304 responses should not contain representation metadata |