chore: remove verbose log (#1971)

This commit is contained in:
Carlos Quintana 2023-12-15 10:39:02 +01:00 committed by GitHub
parent fe1c66268b
commit dc39ab2de7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -46,13 +46,12 @@ def upload_from_bytesio(key: str, bs: BytesIO, content_type="application/octet-s
f.write(bs.read())
else:
out = _get_s3client().put_object(
_get_s3client().put_object(
Bucket=BUCKET,
Key=key,
Body=bs,
ContentType=content_type,
)
print(out)
def upload_email_from_bytesio(path: str, bs: BytesIO, filename):