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
2 parents 8a0e4c4 + f4b2d38 commit 5c56659Copy full SHA for 5c56659
src/quart/wrappers/request.py
@@ -18,6 +18,7 @@
18
from werkzeug.exceptions import RequestEntityTooLarge
19
from werkzeug.exceptions import RequestTimeout
20
21
+from ..datastructures import FileStorage
22
from ..formparser import FormDataParser
23
from ..globals import current_app
24
from .base import BaseRequestWebsocket
@@ -316,7 +317,7 @@ async def form(self) -> MultiDict:
316
317
return self._form
318
319
@property
- async def files(self) -> MultiDict:
320
+ async def files(self) -> MultiDict[str, FileStorage]:
321
"""The parsed files.
322
323
This will return an empty multidict unless the request
0 commit comments