From 596e47216a6a5eb608e6a87a8ef42847eec84d8d Mon Sep 17 00:00:00 2001 From: Jason Date: Sat, 31 Aug 2024 17:53:46 -0400 Subject: [PATCH] fixed missing import Signed-off-by: Jason --- core/api/utils/polymorphism.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/api/utils/polymorphism.py b/core/api/utils/polymorphism.py index a72e6032..f995f33b 100644 --- a/core/api/utils/polymorphism.py +++ b/core/api/utils/polymorphism.py @@ -3,6 +3,7 @@ from json import JSONDecodeError from typing import Any, Callable, Dict, Iterable, List, Optional, Protocol, Set +from django.conf import settings from django.core.exceptions import BadRequest from django.db.models import Model, Q from django.shortcuts import get_object_or_404