mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-23 22:11:02 +00:00
make the linter happy
Und täglich grüßt das Murmeltier ...
This commit is contained in:
parent
3f7649b09a
commit
46be2a02b5
3 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
Pretalx: Broadcast Tools (and more)
|
||||
==========================
|
||||
===================================
|
||||
|
||||
This is a plugin for `pretalx`_.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from django.forms import BooleanField, CharField, Textarea, ChoiceField
|
||||
from django.forms import BooleanField, CharField, ChoiceField, Textarea
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from hierarkey.forms import HierarkeyForm
|
||||
from i18nfield.forms import I18nFormField, I18nFormMixin, I18nTextInput
|
||||
|
|
|
@ -75,7 +75,8 @@ class BroadcastToolsEventInfoView(View):
|
|||
self.request.event.settings.broadcast_tools_lower_thirds_no_talk_info
|
||||
),
|
||||
"room-info": {
|
||||
"lower_info": self.request.event.settings.broadcast_tools_room_info_lower_content or '',
|
||||
"lower_info": self.request.event.settings.broadcast_tools_room_info_lower_content
|
||||
or "",
|
||||
},
|
||||
"slug": self.request.event.slug,
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue