Skip to content
Snippets Groups Projects

Resolve "Register different import tasks/methods"

Merged Jonathan Weth requested to merge 8-register-different-import-tasks-methods into master
8 files
+ 91
8
Compare changes
  • Side-by-side
  • Inline
Files
8
from django.core.management.base import BaseCommand
from ...tasks import untis_import_mysql
from ...tasks import untis_import_mysql_current_term
class Command(BaseCommand):
def handle(self, *args, **options):
untis_import_mysql()
untis_import_mysql_current_term()
Loading