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