From c3cadb8d8b1794339f0611a5e64e4dbbb2ad5e59 Mon Sep 17 00:00:00 2001 From: Steven DeMartini <1647130+sjdemartini@users.noreply.github.com> Date: Wed, 7 Jun 2023 07:46:41 -0700 Subject: [PATCH] Update compat.py MissingType results after PGJSONField removal As mentioned in https://github.com/graphql-python/graphene-django/pull/1421/files#r1221711648 --- graphene_django/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/compat.py b/graphene_django/compat.py index 8fccdb01c..2fcecf6f7 100644 --- a/graphene_django/compat.py +++ b/graphene_django/compat.py @@ -13,4 +13,4 @@ def __init__(self, *args, **kwargs): RangeField, ) except ImportError: - IntegerRangeField, ArrayField, HStoreField, RangeField = (MissingType,) * 5 + IntegerRangeField, ArrayField, HStoreField, RangeField = (MissingType,) * 4