Jonas Winkler 727f86c369 codestyle
2020-11-18 22:41:14 +01:00

14 lines
240 B
Python

from django.core.management.base import BaseCommand
from paperless_mail import tasks
class Command(BaseCommand):
help = """
""".replace(" ", "")
def handle(self, *args, **options):
tasks.process_mail_accounts()