From 6c040e68a2474ec17f1d2ccd5a4b295ffab63dbd Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Mon, 10 Apr 2017 16:18:52 -0700 Subject: [PATCH] Fixed six import --- graphene/test/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/graphene/test/__init__.py b/graphene/test/__init__.py index 6c47fdeb..98c8547c 100644 --- a/graphene/test/__init__.py +++ b/graphene/test/__init__.py @@ -1,8 +1,9 @@ -from graphene.types.schema import Schema - +import six from graphql.error import format_error as format_graphql_error from graphql.error import GraphQLError +from graphene.types.schema import Schema + def default_format_error(error): if isinstance(error, GraphQLError):