(args)
| 667 | |
| 668 | @staticmethod |
| 669 | def _parse_args(args): |
| 670 | cf = CloudFront(Config()) |
| 671 | cfuris = [] |
| 672 | for arg in args: |
| 673 | uris = cf.get_dist_name_for_bucket(S3Uri(arg)) |
| 674 | cfuris.extend(uris) |
| 675 | return cfuris |
| 676 | |
| 677 | @staticmethod |
| 678 | def info(args): |
no test coverage detected