creamy-stone-99746
02/27/2024, 6:09 PMS3PutObject
in put_files()
s3.py:1322 isinstance(key_path, tuple)
is true when key_path is an S3PutObject.
Here is my fix.
for key_path in key_paths:
if isinstance(key_path, S3PutObject):
key = key_path.key
path = key_path.path
else:
key = key_path[0]
path = key_path[1]
victorious-lawyer-58417
02/27/2024, 11:27 PMcreamy-stone-99746
02/27/2024, 11:47 PM