OnlineJudge/utils/tasks.py
2019-03-11 17:59:24 +08:00

14 lines
251 B
Python

import os
import dramatiq
from utils.shortcuts import DRAMATIQ_WORKER_ARGS
@dramatiq.actor(**DRAMATIQ_WORKER_ARGS())
def delete_files(*args):
for item in args:
try:
os.remove(item)
except Exception:
pass