From 07eaca1b16c3be770eafaadf79bbc7dc1fd9a938 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Wed, 17 Aug 2022 10:00:02 +0200 Subject: [PATCH 2/2] forms: remove old mixin (#68204) --- src/authentic2_auth_fedict/forms.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/authentic2_auth_fedict/forms.py b/src/authentic2_auth_fedict/forms.py index a514750..8f06765 100644 --- a/src/authentic2_auth_fedict/forms.py +++ b/src/authentic2_auth_fedict/forms.py @@ -14,13 +14,12 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -from authentic2.apps.authenticators.forms import AuthenticatorFormMixin from django import forms from .models import FedictAuthenticator -class FedictAuthenticatorForm(AuthenticatorFormMixin, forms.ModelForm): +class FedictAuthenticatorForm(forms.ModelForm): class Meta: model = FedictAuthenticator exclude = ('name', 'slug', 'ou') -- 2.30.2