(path)
| 10 | |
| 11 | |
| 12 | def mkdir(path): |
| 13 | if not os.path.exists(path): |
| 14 | os.makedirs(path) |
| 15 | |
| 16 | COLORS = [[255, 0, 0], [255, 85, 0], [255, 170, 0], [255, 255, 0], [170, 255, 0], [85, 255, 0], [0, 255, 0], |
| 17 | [0, 255, 85], [0, 255, 170], [0, 255, 255], [0, 170, 255], [0, 85, 255], [0, 0, 255], [85, 0, 255], |
nothing calls this directly
no outgoing calls
no test coverage detected