Skip to content

Commit

Permalink
Fix Object.copy_from and ObjectSummary.copy_from type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Aug 10, 2024
1 parent e3d44e7 commit 5b8af72
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mypy_boto3_builder/type_maps/method_type_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@
},
"MultipartUploadPart": {"copy_from": {"CopySource": CopySourceOrStrTypeDef}},
"Bucket": {"copy": {"CopySource": CopySourceTypeDef}},
"Object": {"copy": {"CopySource": CopySourceTypeDef}},
"Object": {
"copy": {"CopySource": CopySourceTypeDef},
"copy_from": {"CopySource": CopySourceTypeDef},
},
"ObjectSummary": {"copy_from": {"CopySource": CopySourceTypeDef}},
},
ServiceNameCatalog.dynamodb: {
"Table": {
Expand Down

0 comments on commit 5b8af72

Please sign in to comment.