From 10587222eb2363ec2c125723d2c6333ed4071607 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Thu, 11 Jun 2020 11:42:34 +0100 Subject: [PATCH] Remove @staticmethod decorator in mutations doc --- docs/types/mutations.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/types/mutations.rst b/docs/types/mutations.rst index d63ada3ed..f8c76f350 100644 --- a/docs/types/mutations.rst +++ b/docs/types/mutations.rst @@ -104,7 +104,6 @@ To use an InputField you define an InputObjectType that specifies the structure person = graphene.Field(Person) - @staticmethod def mutate(root, info, person_data=None): person = Person( name=person_data.name,