(self, extra_args)
| 768 | return get_filtered_dict(extra_args, self.COMPLETE_MULTIPART_ARGS) |
| 769 | |
| 770 | def _extra_create_multipart_args(self, extra_args): |
| 771 | return get_filtered_dict( |
| 772 | extra_args, blocklisted_keys=self.CREATE_MULTIPART_BLOCKLIST |
| 773 | ) |
| 774 | |
| 775 | def _extra_put_object_args(self, extra_args): |
| 776 | return get_filtered_dict( |
no test coverage detected