From c37b9f85bb03ee49438d25e38b3173d7591e5ee4 Mon Sep 17 00:00:00 2001 From: allen-munsch Date: Mon, 24 Oct 2022 09:57:56 -0500 Subject: [PATCH] try fix lint --- graphene/types/schema.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/graphene/types/schema.py b/graphene/types/schema.py index 7c48403f..fd9e988c 100644 --- a/graphene/types/schema.py +++ b/graphene/types/schema.py @@ -453,10 +453,6 @@ class Schema: return _type def get_type(self, name): - """ - This will actually return a `GraphQLObjectType` of type `GrapheneObjectType` from graphql-core, not a graphene ObjectType. - These two are fundamentally different classes. That's the reason why your test is failing. You'd need to return the Graphene type here. - """ return self.graphql_schema.type_map.get(name).graphene_type def lazy(self, _type):