mirror of
https://github.com/graphql-python/graphene.git
synced 2025-07-18 03:52:24 +03:00
try fix lint
This commit is contained in:
parent
bcd8a61da8
commit
57dde680d2
|
@ -453,10 +453,10 @@ 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):
|
||||
|
|
|
@ -32,7 +32,7 @@ def test_schema_get_type():
|
|||
schema = Schema(Query)
|
||||
assert schema.Query == Query
|
||||
assert schema.MyOtherType == MyOtherType
|
||||
assert schema.get_type('MyOtherType') == MyOtherType
|
||||
assert schema.get_type("MyOtherType") == MyOtherType
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user