(self, argv)
| 235 | self.config_files.remove(cf) |
| 236 | |
| 237 | def parse_command_line(self, argv): |
| 238 | super(ProfileCreate, self).parse_command_line(argv) |
| 239 | # accept positional arg as profile name |
| 240 | if self.extra_args: |
| 241 | self.profile = self.extra_args[0] |
| 242 | |
| 243 | flags = Dict(create_flags) |
| 244 |
nothing calls this directly
no test coverage detected