(lines, File)
| 35 | import os.path |
| 36 | import numpy as np |
| 37 | def write_file(lines, File): # {{{ |
| 38 | with open(File, 'w') as fh: |
| 39 | fh.writelines([f'{L}\n' for L in lines]) |
| 40 | print(f'wrote {File}') |
| 41 | # }}} |
| 42 | def load_node_file(File): # {{{ |
| 43 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected