From 4f8fe31ad39bf0b82842690aeedf20a50d8812df Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 24 Mar 2025 18:04:01 +0100 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 bd0c42619..02ed055ec 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -2169,7 +2169,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