From 9ec3d7cce6b41228699f6f58b9f014b9dc0d589d Mon Sep 17 00:00:00 2001 From: Daniel Gallagher Date: Mon, 21 May 2018 22:52:29 -0700 Subject: [PATCH] Expose GraphQLEnumValue in top level init file to follow existing convention --- graphql/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/graphql/__init__.py b/graphql/__init__.py index 08f25683..0dee52dc 100644 --- a/graphql/__init__.py +++ b/graphql/__init__.py @@ -38,6 +38,7 @@ GraphQLInterfaceType, GraphQLUnionType, GraphQLEnumType, + GraphQLEnumValue, GraphQLInputObjectType, GraphQLList, GraphQLNonNull, @@ -203,6 +204,7 @@ 'graphql', 'GraphQLBoolean', 'GraphQLEnumType', + 'GraphQLEnumValue', 'GraphQLFloat', 'GraphQLID', 'GraphQLInputObjectType',