diff --git a/graphene-django/graphene_django/types.py b/graphene-django/graphene_django/types.py index aa8e13d4..62f279fb 100644 --- a/graphene-django/graphene_django/types.py +++ b/graphene-django/graphene_django/types.py @@ -61,8 +61,7 @@ class DjangoObjectTypeMeta(ObjectTypeMeta): if DJANGO_FILTER_INSTALLED: # In case Django filter is available, then # we allow more attributes in Meta - defaults = dict( - defaults, + defaults.update( filter_fields=(), filter_order_by=(), )