from scripts.task import Task from utils import FileUtils class ProjectEnd(Task): def execute(self): FileUtils.delete(self.context.temp_project_path, True) pass