We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Request.files
1 parent 8a0e4c4 commit 5051a15Copy full SHA for 5051a15
src/quart/wrappers/request.py
@@ -321,7 +321,8 @@ async def files(self) -> MultiDict:
321
322
This will return an empty multidict unless the request
323
mimetype was ``enctype="multipart/form-data"`` and the method
324
- POST, PUT, or PATCH.
+ POST, PUT, or PATCH; in that case the type of values in the
325
+ multidict is ``FileStorage``.
326
"""
327
await self._load_form_data()
328
return self._files
0 commit comments