(self, argv=None)
| 123 | description = """print the path to an IPython profile dir""" |
| 124 | |
| 125 | def parse_command_line(self, argv=None): |
| 126 | super(ProfileLocate, self).parse_command_line(argv) |
| 127 | if self.extra_args: |
| 128 | self.profile = self.extra_args[0] |
| 129 | |
| 130 | def start(self): |
| 131 | print(self.profile_dir.location) |
no outgoing calls
no test coverage detected