(opt, conf_file)
| 108 | |
| 109 | |
| 110 | def save_opt_to_json(opt, conf_file): |
| 111 | with open(conf_file, 'w', encoding='utf-8') as f: |
| 112 | json.dump(opt, f, indent=4) |
| 113 | |
| 114 | |
| 115 | def save_opt_to_yaml(opt, conf_file): |
nothing calls this directly
no outgoing calls
no test coverage detected