From e99c5aa006d85ddd17a1a9a2e6256f7653b8cfb3 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 30 Jun 2022 10:54:09 +0200 Subject: [PATCH] fix import --- teleforma/forms.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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) -- 2.39.5