From 772aa33ae7abfee34018e2a0d5a101d1a9037107 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Sun, 12 Apr 2020 16:27:25 +0100 Subject: [PATCH] Remove unused form --- graphene_django/forms/tests/test_mutation.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/graphene_django/forms/tests/test_mutation.py b/graphene_django/forms/tests/test_mutation.py index 846a37c..093f398 100644 --- a/graphene_django/forms/tests/test_mutation.py +++ b/graphene_django/forms/tests/test_mutation.py @@ -36,12 +36,6 @@ class PetForm(forms.ModelForm): return age -class FilmDetailsForm(forms.ModelForm): - class Meta: - model = FilmDetails - fields = "__all__" - - class PetType(DjangoObjectType): class Meta: model = Pet