camenduru commited on
Commit
8c65d88
1 Parent(s): c793436

Update worker_runpod.py

Browse files
Files changed (1) hide show
  1. worker_runpod.py +2 -2
worker_runpod.py CHANGED
@@ -180,8 +180,8 @@ def generate(input):
180
  if os.path.exists(result):
181
  os.remove(result)
182
  if os.path.exists(output_frames_dir):
183
- os.rmdir(output_frames_dir)
184
  if os.path.exists(frames_dir):
185
- os.rmdir(frames_dir)
186
 
187
  runpod.serverless.start({"handler": generate})
 
180
  if os.path.exists(result):
181
  os.remove(result)
182
  if os.path.exists(output_frames_dir):
183
+ shutil.rmtree(output_frames_dir)
184
  if os.path.exists(frames_dir):
185
+ shutil.rmtree(frames_dir)
186
 
187
  runpod.serverless.start({"handler": generate})