(ordered_tgt, path)
| 613 | |
| 614 | |
| 615 | def write_txt_file(ordered_tgt, path): |
| 616 | f = Path(path).open("w") |
| 617 | for ln in ordered_tgt: |
| 618 | f.write(ln + "\n") |
| 619 | f.flush() |
| 620 | |
| 621 | |
| 622 | def chunks(lst, n): |
nothing calls this directly
no outgoing calls
no test coverage detected