(folder_path)
| 33 | from star.utils.metrics import Metrics |
| 34 | |
| 35 | def check_folder(folder_path): |
| 36 | if not os.path.exists(folder_path): |
| 37 | os.mkdir(folder_path) |
| 38 | return folder_path |
| 39 | |
| 40 | |
| 41 | def main(args): |
nothing calls this directly
no outgoing calls
no test coverage detected