From: Guillaume Pellerin Date: Thu, 30 Jun 2022 08:54:09 +0000 (+0200) Subject: fix import X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=e99c5aa006d85ddd17a1a9a2e6256f7653b8cfb3;p=teleforma.git fix import --- diff --git a/teleforma/forms.py b/teleforma/forms.py index e7752a6d..187d04c3 100644 --- a/teleforma/forms.py +++ b/teleforma/forms.py @@ -1,9 +1,8 @@ - -from django.forms import ModelForm +from django import forms from teleforma.models import Conference -class ConferenceForm(ModelForm): +class ConferenceForm(forms.ModelForm): streaming = forms.BooleanField(initial=False)