From be97a369f7a08444540fba36d9d01ac4ecbdfc3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=9C=A0=EC=84=9D?= Date: Tue, 18 Feb 2020 17:53:48 +0900 Subject: [PATCH] fix typo in class 'Interface' (#1135) --- 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 def0d040..77086dab 100644 --- a/graphene/types/interface.py +++ b/graphene/types/interface.py @@ -68,4 +68,4 @@ class Interface(BaseType): return type(instance) def __init__(self, *args, **kwargs): - raise Exception("An Interface cannot be intitialized") + raise Exception("An Interface cannot be initialized")