Write `results` to the `output_file` opened file-like object.
(results, output_file, **kwargs)
| 44 | |
| 45 | |
| 46 | def write_yaml(results, output_file, **kwargs): |
| 47 | """ |
| 48 | Write `results` to the `output_file` opened file-like object. |
| 49 | """ |
| 50 | output_file.write(saneyaml.dump(results, indent=4)) |
| 51 | output_file.write('\n') |
no test coverage detected