From 0a29319e2d7d8a3eb190b3596bb9e7942dc28d3e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 15 Oct 2025 19:01:43 +0200 Subject: ♻️ django 3.2 - new version of libraries: fix errors and deprecation warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_finds/models_finds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_finds') diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 6104587c2..7f345efd8 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -2237,7 +2237,7 @@ class Find( _("Reference container - first full location"), default="", blank=True, help_text=_("Updated as long as no packaging is attached") ) - is_complete = models.NullBooleanField(_("Is complete?"), blank=True, null=True) + is_complete = models.BooleanField(_("Is complete?"), blank=True, null=True) object_types = models.ManyToManyField( ObjectType, verbose_name=_("Object types"), related_name="find", blank=True ) -- cgit v1.2.3