From cc3a53a229378d46b4ac49419494db7e0c49b833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Thu, 16 Jul 2026 08:28:47 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20spec=5Fevents.py=20=E2=80=94=20from=20co?= =?UTF-8?q?mpare.metrics=20=E2=86=92=20from=20services.metrics?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/db/spec_events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/db/spec_events.py b/site/db/spec_events.py index 3b62139..2ea4f58 100644 --- a/site/db/spec_events.py +++ b/site/db/spec_events.py @@ -144,7 +144,7 @@ def _hash(name, date_start=None): import hashlib key = name.strip().lower() if date_start: - from compare.metrics import normalize_date + from services.metrics import normalize_date nd = normalize_date(str(date_start)) if nd: key += "|" + nd