(self)
| 313 | return await self._get_current().form() |
| 314 | |
| 315 | async def files(self) -> PluginMultiDict[PluginUploadFile]: |
| 316 | return await self._get_current().files() |
| 317 | |
| 318 | def __getattr__(self, key: str) -> Any: |
| 319 | return getattr(self._get_current(), key) |
nothing calls this directly
no test coverage detected