From f69665dcd86e89fd0aad447ac95af1891afc06b0 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Thu, 19 Nov 2015 19:17:02 -0800 Subject: [PATCH] Flake8 improvements and README update --- README.rst | 4 +++- graphene/contrib/django/tests/test_types.py | 2 +- graphene/relay/tests/test_types.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b8afcf8d..ea5e2635 100644 --- a/README.rst +++ b/README.rst @@ -12,7 +12,9 @@ easily. `Django `__ implementation -*What is supported in this Python version?* **Everything**: Interfaces, ObjectTypes, Scalars, Unions and Relay (Nodes, Connections and Mutations), in addition to queries, mutations and subscriptions. +*What is supported in this Python version?* **Everything**: Interfaces, +ObjectTypes, Scalars, Unions and Relay (Nodes, Connections), in addition +to queries, mutations and subscriptions. Installation ------------ diff --git a/graphene/contrib/django/tests/test_types.py b/graphene/contrib/django/tests/test_types.py index 0e8eaa11..7f9dd35a 100644 --- a/graphene/contrib/django/tests/test_types.py +++ b/graphene/contrib/django/tests/test_types.py @@ -1,6 +1,6 @@ -from pytest import raises from graphql.core.type import GraphQLInterfaceType, GraphQLObjectType from mock import patch +from pytest import raises from graphene import Schema from graphene.contrib.django.types import DjangoInterface, DjangoNode diff --git a/graphene/relay/tests/test_types.py b/graphene/relay/tests/test_types.py index 1f3c56bf..dd731c40 100644 --- a/graphene/relay/tests/test_types.py +++ b/graphene/relay/tests/test_types.py @@ -1,5 +1,5 @@ -from pytest import raises from graphql.core.type import GraphQLList +from pytest import raises import graphene from graphene import relay