(folder_path: str)
| 61 | |
| 62 | |
| 63 | def delete_folder(folder_path: str) -> None: |
| 64 | if os.path.exists(folder_path): |
| 65 | shutil.rmtree(folder_path) |
| 66 | |
| 67 | |
| 68 | def execute(command: list[str], fail_on_error: bool = True) -> tuple[str, str, int]: |
no test coverage detected
searching dependent graphs…