9 lines
183 B
Python
9 lines
183 B
Python
|
from scripts.task import Task
|
||
|
from utils import FileUtils
|
||
|
|
||
|
|
||
|
class ProjectEnd(Task):
|
||
|
def execute(self):
|
||
|
FileUtils.delete(self.context.temp_project_path, True)
|
||
|
pass
|