(self, extra_args)
| 297 | ) |
| 298 | |
| 299 | def _extra_upload_part_args(self, extra_args): |
| 300 | # Only the args in COPY_PART_ARGS actually need to be passed |
| 301 | # onto the upload_part_copy calls. |
| 302 | return get_filtered_dict(extra_args, self.UPLOAD_PART_COPY_ARGS) |
| 303 | |
| 304 | def _extra_complete_multipart_args(self, extra_args): |
| 305 | return get_filtered_dict(extra_args, self.COMPLETE_MULTIPART_ARGS) |
no test coverage detected