(self, args)
| 407 | return args |
| 408 | |
| 409 | def do_update(self, args): |
| 410 | self._build_data(args) |
| 411 | |
| 412 | c, p = self._get_project(args) |
| 413 | p.update(args) |
| 414 | self._set_config(c) |
| 415 | |
| 416 | logging.info('Update project: %s', p) |
| 417 | return p |
| 418 | |
| 419 | def do_list(self, args): |
| 420 | c = self._get_config() |
nothing calls this directly
no test coverage detected