From 194ad734e11532a3eabd96924b89bd58d831a364 Mon Sep 17 00:00:00 2001 From: Sergey Korotonozhko <_serezhka_@mail.ru> Date: Tue, 19 May 2026 18:20:27 +0300 Subject: [PATCH] fix: add missing Any import in exceptions.py --- app/core/exceptions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/core/exceptions.py b/app/core/exceptions.py index 1b47e54..be62ccb 100644 --- a/app/core/exceptions.py +++ b/app/core/exceptions.py @@ -1,5 +1,7 @@ """Custom exceptions for VoIdea application.""" +from typing import Any + class AppError(Exception): """Base application exception.