From d5e71bc9be5c11cd4261419629f5ea54d6eae42b Mon Sep 17 00:00:00 2001 From: Gert Van Gool Date: Sat, 10 Aug 2019 22:30:17 +0200 Subject: [PATCH] Fix typo of imoprt to import (#742) --- docs/mutations.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/mutations.rst b/docs/mutations.rst index 6610151..362df58 100644 --- a/docs/mutations.rst +++ b/docs/mutations.rst @@ -151,7 +151,7 @@ customize the look up with the ``lookup_field`` attribute on the ``SerializerMut .. code:: python from graphene_django.rest_framework.mutation import SerializerMutation - from .serializers imoprt MyModelSerializer + from .serializers import MyModelSerializer class AwesomeModelMutation(SerializerMutation): @@ -168,7 +168,7 @@ Use the method ``get_serializer_kwargs`` to override how updates are applied. .. code:: python from graphene_django.rest_framework.mutation import SerializerMutation - from .serializers imoprt MyModelSerializer + from .serializers import MyModelSerializer class AwesomeModelMutation(SerializerMutation): @@ -199,7 +199,7 @@ You can use relay with mutations. A Relay mutation must inherit from .. code:: python - import graphene + import graphene from graphene import relay from graphene_django import DjangoObjectType from graphql_relay import from_global_id