From c979eaf3cdb3446bdaf73f5df4c6984a113bc27a Mon Sep 17 00:00:00 2001 From: Yuseok Jung Date: Tue, 18 Feb 2020 16:41:42 +0900 Subject: [PATCH] fix typo in class 'Interface' --- graphene/types/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/types/interface.py b/graphene/types/interface.py index def0d040f..77086dab0 100644 --- a/graphene/types/interface.py +++ b/graphene/types/interface.py @@ -68,4 +68,4 @@ def resolve_type(cls, instance, info): return type(instance) def __init__(self, *args, **kwargs): - raise Exception("An Interface cannot be intitialized") + raise Exception("An Interface cannot be initialized")