(argv)
| 42 | |
| 43 | |
| 44 | def main(argv): |
| 45 | del argv |
| 46 | environment_name = FLAGS.environment_name |
| 47 | |
| 48 | all_names = list(manipulation.ALL) |
| 49 | |
| 50 | if environment_name is None: |
| 51 | print('\n '.join(['Available environments:'] + all_names)) |
| 52 | environment_name = prompt_environment_name( |
| 53 | 'Please select an environment name: ', all_names) |
| 54 | |
| 55 | loader = functools.partial( |
| 56 | manipulation.load, environment_name=environment_name) |
| 57 | viewer.launch(loader) |
| 58 | |
| 59 | |
| 60 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected
searching dependent graphs…