Version 7.2.19 added breaking change
It is not possible anymore to use for the "client.list_objects() " non keyword argument
So :
list_objects(bucket="my-bucket") # Fail
list_objects("my-bucket") # Fail
Instead use :
list_objects(bucket_name="my-bucket")
This issue might be related to #1532 and a few more concerning non keyword arguments