Fix typo of imoprt to import (#742)

This commit is contained in:
Gert Van Gool 2019-08-10 22:30:17 +02:00 committed by Jonathan Kim
parent a04fff9d70
commit d5e71bc9be

View File

@ -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):