Update graphene/relay/connection.py

Co-Authored-By: Jonathan Kim <jkimbo@gmail.com>
This commit is contained in:
Mel van Londen 2019-08-10 11:06:59 -04:00 committed by GitHub
parent 55c7a67275
commit 4b0cac5fb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,7 +152,7 @@ class IterableConnectionField(Field):
return resolved return resolved
assert isinstance(resolved, Iterable), ( assert isinstance(resolved, Iterable), (
"Resolved value from the connection field has to be iterable or instance of {}. " "Resolved value from the connection field has to be an iterable or instance of {}. "
'Received "{}"' 'Received "{}"'
).format(connection_type, resolved) ).format(connection_type, resolved)
connection = connection_from_array( connection = connection_from_array(