From 07b87c50708ba8216a89693db3ce9f8935c5995a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 4 Jun 2019 07:59:25 -0400 Subject: [PATCH] Update graphene/types/union.py Co-Authored-By: Jonathan Kim --- graphene/types/union.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/types/union.py b/graphene/types/union.py index e05d7882..38e4a0a8 100644 --- a/graphene/types/union.py +++ b/graphene/types/union.py @@ -39,7 +39,7 @@ class Union(UnmountedType, BaseType): ) Meta: - types (Iterable[graphene.ObjectType)]: Required. Collection of types that may be returned + types (Iterable[graphene.ObjectType]): Required. Collection of types that may be returned by this Union for the graphQL schema. name (optional, str): the name of the GraphQL type (must be unique in schema). Defaults to class name.