Skip to content

Commit bc98505

Browse files
committed
Fixed missing context arg
1 parent e897efb commit bc98505

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene/relay/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def resolver(self, instance, args, context, info):
4141
return resolved
4242
return self.from_list(connection_type, resolved, args, context, info)
4343

44-
def from_list(self, connection_type, resolved, args, info):
44+
def from_list(self, connection_type, resolved, args, context, info):
4545
return connection_type.from_list(resolved, args, context, info)
4646

4747
def get_connection_type(self, node):

0 commit comments

Comments
 (0)