OnlineJudge/utils/tasks.py

14 lines
251 B
Python
Raw Normal View History

import os
2019-03-11 08:21:29 +00:00
import dramatiq
2019-03-11 08:21:29 +00:00
from utils.shortcuts import DRAMATIQ_WORKER_ARGS
2019-03-11 08:21:29 +00:00
@dramatiq.actor(**DRAMATIQ_WORKER_ARGS())
def delete_files(*args):
for item in args:
try:
os.remove(item)
except Exception:
pass