From 65f2dabdb6acaf334c4e79249140f6efad9fa381 Mon Sep 17 00:00:00 2001 From: chriscauley Date: Thu, 3 Nov 2016 12:20:40 -0400 Subject: [PATCH] tutorial was missing import --- README.md | 1 + README.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index e766491..94278a3 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ To create a GraphQL schema for it you simply have to write the following: ```python from graphene_django import DjangoObjectType +import graphene class User(DjangoObjectType): class Meta: diff --git a/README.rst b/README.rst index 176c6a8..976298c 100644 --- a/README.rst +++ b/README.rst @@ -68,6 +68,7 @@ following: .. code:: python from graphene_django import DjangoObjectType + import graphene class User(DjangoObjectType): class Meta: