Final code review fix: simplify error message construction in __init__.py

Co-authored-by: Askill <16598120+Askill@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-15 17:28:43 +00:00
parent 73f1c00e74
commit 3ef5489c05
1 changed files with 1 additions and 1 deletions

View File

@ -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"
)