Merge pull request #357 from ekampf/patch-3

Fix typo in Union initialization exception
This commit is contained in:
Syrus Akbary 2016-11-08 14:22:42 -08:00 committed by GitHub
commit 50eadde8b2

View File

@ -42,4 +42,4 @@ class Union(six.with_metaclass(UnionMeta)):
resolve_type = None resolve_type = None
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
raise Exception("An Union cannot be intitialized") raise Exception("A Union cannot be intitialized")