From cf29f5de15f6d905a3539e156dca7c4ce8f9f40d Mon Sep 17 00:00:00 2001 From: shrouxm Date: Thu, 8 Jun 2023 15:32:32 -0700 Subject: [PATCH] chore: appease linter --- graphene/relay/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphene/relay/connection.py b/graphene/relay/connection.py index f3b1322b..cc7d2da0 100644 --- a/graphene/relay/connection.py +++ b/graphene/relay/connection.py @@ -22,8 +22,8 @@ def get_edge_class( class EdgeBase: node = Field( - NonNull(_node) if strict_types else _node, - description="The item at the end of the edge" + NonNull(_node) if strict_types else _node, + description="The item at the end of the edge", ) cursor = String(required=True, description="A cursor for use in pagination")