From bc4896af91bc048899a8c1fc9b6011591cf84bad Mon Sep 17 00:00:00 2001 From: Markus Padourek Date: Tue, 7 Jun 2016 15:19:38 +0100 Subject: [PATCH] fix blank lines --- graphene/relay/fields.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphene/relay/fields.py b/graphene/relay/fields.py index 65ecb583..4b9589d7 100644 --- a/graphene/relay/fields.py +++ b/graphene/relay/fields.py @@ -46,10 +46,10 @@ class ConnectionField(Field): def get_connection_type(self, node): connection_type = self.connection_type or node.get_connection_type() - + if issubclass(connection_type, SimpleConnection): return connection_type.for_node(node) - + edge_type = self.get_edge_type(node) return connection_type.for_node(node, edge_type=edge_type)