ruff format

This commit is contained in:
L. Kärkkäinen
2023-10-25 00:22:00 +01:00
parent 209840b771
commit 140d27ef96
10 changed files with 12 additions and 17 deletions

View File

@@ -1,4 +1,3 @@
from asyncio import CancelledError

View File

@@ -57,7 +57,7 @@ def raised_ceiling():
# Chrome, Firefox:
# Content-Disposition: form-data; name="foo%22;bar\"; filename="😀"
'form-data; name="foo%22;bar\\"; filename="😀"',
("form-data", {"name": 'foo";bar\\', "filename": "😀"})
("form-data", {"name": 'foo";bar\\', "filename": "😀"}),
# cgi: ('form-data', {'name': 'foo%22;bar"; filename="😀'})
# werkzeug (pre 2.3.0): ('form-data', {'name': 'foo%22;bar"; filename='})
),