diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 7171bbf2..008372d9 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -52,6 +52,6 @@ Then we can start querying our schema: .. code:: python result = schema.execute('{ hello }') - print result.data['hello'] # "Hello stranger" + print(result.data['hello']) # "Hello stranger" Congrats! You got your first graphene schema working!