Skip to content

Commit

Permalink
Fix typing after merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnstrk committed Apr 21, 2024
1 parent 9d54cfd commit 4e2f847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multipart/multipart.py
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ def parse_form(

while True:
# Read only up to the Content-Length given.
max_readable = min(content_length - bytes_read, chunk_size)
max_readable = int(min(content_length - bytes_read, chunk_size))
buff = input_stream.read(max_readable)

# Write to the parser and update our length.
Expand Down

0 comments on commit 4e2f847

Please sign in to comment.