mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-10 21:35:50 +00:00
Fix imports
This commit is contained in:
parent
c9e72db1f7
commit
7c05357067
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
from django.views.generic import FormView
|
from django.views.generic import FormView
|
||||||
from pretalx.common.mixins.views import PermissionRequired
|
from pretalx.common.views.mixins import PermissionRequired
|
||||||
|
|
||||||
from ..forms import BroadcastToolsSettingsForm
|
from ..forms import BroadcastToolsSettingsForm
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ from django.http import JsonResponse
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from django.views import View
|
from django.views import View
|
||||||
from pretalx.agenda.views.schedule import ScheduleMixin
|
from pretalx.agenda.views.schedule import ScheduleMixin
|
||||||
from pretalx.common.mixins.views import EventPermissionRequired
|
from pretalx.common.views.mixins import EventPermissionRequired
|
||||||
from pretalx.schedule.exporters import ScheduleData
|
from pretalx.schedule.exporters import ScheduleData
|
||||||
|
|
||||||
from ..utils.placeholders import placeholders
|
from ..utils.placeholders import placeholders
|
||||||
|
|
Loading…
Reference in a new issue