Merge pull request #605 from GitRon/bugfix/missing-type-declaration-in-docs

Missing LOC in django model form documentation (fixes #602)
This commit is contained in:
Mel van Londen 2019-04-27 09:34:58 -07:00 committed by GitHub
commit 2016011394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,6 +43,8 @@ DjangoModelFormMutation
model = Pet
class PetMutation(DjangoModelFormMutation):
pet = Field(PetType)
class Meta:
form_class = PetForm