From d8d4c07e809ab51ed2f2592e7606184f21c5c56e Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Sun, 6 Jul 2025 23:53:58 +0300 Subject: [PATCH] Fixes: 1) Add missing `Any` import to `typing`. --- core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/models.py b/core/models.py index 6f6976d7..bfb2d6ce 100644 --- a/core/models.py +++ b/core/models.py @@ -1,7 +1,7 @@ import datetime import json import logging -from typing import Optional, Self +from typing import Optional, Self, Any from constance import config from django.contrib.gis.db.models import PointField