(s, output_file)
| 683 | |
| 684 | |
| 685 | def to_protobuf(s, output_file): |
| 686 | msg = parse_document(s, output_file) |
| 687 | with open(output_file, "w") as f: |
| 688 | f.write(str(msg)) |
| 689 | |
| 690 | def to_json(s, output_file): |
| 691 | msg = parse_document(s, output_file) |
no test coverage detected