From 8d35e72c4f35abca5ae8955add123bdac02e61de Mon Sep 17 00:00:00 2001 From: Yoan Le Clanche Date: Mon, 27 Jun 2022 16:15:00 +0200 Subject: [PATCH] Fix imports --- .../commands/teleforma-publish-notify-conferences.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/teleforma/management/commands/teleforma-publish-notify-conferences.py b/teleforma/management/commands/teleforma-publish-notify-conferences.py index 476c2f24..ca38f223 100644 --- a/teleforma/management/commands/teleforma-publish-notify-conferences.py +++ b/teleforma/management/commands/teleforma-publish-notify-conferences.py @@ -9,9 +9,12 @@ from django.conf import settings from django.core.management.base import BaseCommand, CommandError from django.contrib.auth.models import User from django.template.defaultfilters import slugify - -from teleforma.models import * +from django.urls import reverse +from teleforma.models.core import Conference +from teleforma.models.crfpa import Student from teleforma.models.notification import notify +from teleforma.views.core import get_courses +import datetime class Logger: -- 2.39.5