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.
2 parents 91575ba + 7f6ed97 commit 4f32a64Copy full SHA for 4f32a64
src/five/formlib/tests/test_formlib.py
@@ -69,8 +69,8 @@ def test_get_widgets_for_schema_fields():
69
70
71
def encodeMultipartFormdata(
72
- fields: list[tuple[str, str]],
73
- files: typing.Optional[list] = None) -> tuple[str, str]:
+ fields: typing.List[typing.Tuple[str, str]],
+ files: typing.Optional[list] = None) -> typing.Tuple[str, str]:
74
"""Encode fields and files to be used in a multipart/form-data request.
75
76
Returns a tuple of content-type and content.
0 commit comments