From 3ef5489c05fc7282ce73a0ace98c99b018bdead1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Feb 2026 17:28:43 +0000 Subject: [PATCH] Final code review fix: simplify error message construction in __init__.py Co-authored-by: Askill <16598120+Askill@users.noreply.github.com> --- Application/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/__init__.py b/Application/__init__.py index 8270256..a285a37 100644 --- a/Application/__init__.py +++ b/Application/__init__.py @@ -28,7 +28,7 @@ except ImportError as e: import warnings warnings.warn( - f"Video processing components could not be imported. Missing dependency: {e.name if hasattr(e, 'name') else str(e)}. " + f"Video processing components could not be imported. Missing dependency: {str(e)}. " f"Install with: pip install -r requirements.txt" )