Skip to content

Commit

Permalink
chore(ruff): use parentheses to prevent too sparse layout
Browse files Browse the repository at this point in the history
  • Loading branch information
vytas7 committed Apr 17, 2024
1 parent ad09ded commit 8c42935
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_media_multipart.py
Expand Up @@ -60,10 +60,7 @@
b'--BOUNDARY\r\n'
b'Content-Disposition: form-data; name="file"; filename="bytes"\r\n'
b'Content-Type: application/x-falcon\r\n\r\n'
+ b'123456789abcdef\n'
* 64
* 1024
* 2
+ (b'123456789abcdef\n' * 64 * 1024 * 2)
+ b'\r\n'
b'--BOUNDARY\r\n'
b'Content-Disposition: form-data; name="empty"\r\n'
Expand Down

0 comments on commit 8c42935

Please sign in to comment.