Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Apr 17, 2024
1 parent 0f4853f commit e84b5ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dcor_shared/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,10 @@ def upload_presigned_to_s3(
# Finish the multipart upload
c_xml = "<CompleteMultipartUpload>\n"
for ii, etag in enumerate(etags):
c_xml += (f" <Part>\n"
c_xml += (" <Part>\n"
+ f" <PartNumber>{ii + 1}</PartNumber>\n"
+ f" <ETag>{etag}</ETag>\n"
+ f" </Part>\n"
+ " </Part>\n"
)
c_xml += "</CompleteMultipartUpload>"
resp = requests.post(
Expand Down

0 comments on commit e84b5ae

Please sign in to comment.