You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if field_size > self.max_form_memory_size:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: '>' not supported between instances of 'int' and 'NoneType'
self.max_form_memory_size is None, although I have tried both explicitly setting it and letting it default.
I used 2 files, 1 file sent POST request form data to the erroring file which contains 1 item "inputText". The error immediately occurs at await request.form.
The erroring file should have returned a json response containing a list of dicts.
Environment:
Python version: 3.12.6-bullseye
Quart version: 0.19.7
The text was updated successfully, but these errors were encountered:
When using await request.form, an error occurs:
self.max_form_memory_size is None, although I have tried both explicitly setting it and letting it default.
I used 2 files, 1 file sent POST request form data to the erroring file which contains 1 item "inputText". The error immediately occurs at await request.form.
The erroring file should have returned a json response containing a list of dicts.
Environment:
The text was updated successfully, but these errors were encountered: