(param_file, param_name)
| 58 | return None |
| 59 | |
| 60 | def get_params(param_file, param_name): |
| 61 | with open(param_file, "r") as fd: |
| 62 | d = json.load(fd) |
| 63 | return d.get(param_name, {}) |
| 64 | |
| 65 | def write_file(out_file_name, context): |
| 66 | with open(out_file_name, 'w') as f: |
no test coverage detected