From 19d5558ed78c7e860e362cf77a67d1a407e9bf28 Mon Sep 17 00:00:00 2001 From: lilac-supernova-2 <143229315+lilac-supernova-2@users.noreply.github.com> Date: Sat, 26 Aug 2023 03:08:29 -0400 Subject: [PATCH] Add 'self' argument --- graphene_django/tests/test_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/tests/test_types.py b/graphene_django/tests/test_types.py index 34828db..b30c679 100644 --- a/graphene_django/tests/test_types.py +++ b/graphene_django/tests/test_types.py @@ -30,7 +30,7 @@ class ArticleConnection(Connection): test = String() - def resolve_test(): + def resolve_test(self): return "test" class Meta: