(outputPath: str)
| 88 | |
| 89 | |
| 90 | def createPath(outputPath: str): |
| 91 | if not os.path.exists(outputPath): |
| 92 | os.mkdir(outputPath) |
| 93 | |
| 94 | figPath = os.path.join(outputPath, 'figs/') |
| 95 | if not os.path.exists(figPath): |
| 96 | os.mkdir(figPath) |
| 97 | |
| 98 | |
| 99 | if __name__ == '__main__': |
nothing calls this directly
no outgoing calls
no test coverage detected