Creates new directory if it doesn't already exist
(out_dir)
| 51 | return filenames |
| 52 | |
| 53 | def create_dir(out_dir): |
| 54 | """ Creates new directory if it doesn't already exist """ |
| 55 | if not os.path.exists(out_dir): |
| 56 | print(f"Creating {out_dir}") |
| 57 | os.makedirs(out_dir) |
nothing calls this directly
no outgoing calls
no test coverage detected