mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-13 17:52:19 +03:00
fix
This commit is contained in:
parent
6dbc764763
commit
519f67cdac
|
@ -67,7 +67,7 @@ def get_model_fields(model):
|
|||
|
||||
|
||||
def is_valid_neomodel_model(model):
|
||||
return inspect.isclass(model) and issubclass(model, StructuredNode) or isinstance(model, dict)
|
||||
return (inspect.isclass(model) and issubclass(model, StructuredNode)) or isinstance(model, dict)
|
||||
|
||||
|
||||
def import_single_dispatch():
|
||||
|
|
Loading…
Reference in New Issue
Block a user