fix: Add package __init__.py and fix imports

- Added videoarchiver/__init__.py to make it a proper package
- Fixed import statement in ffmpeg_manager.py to use local imports
This commit is contained in:
pacnpal
2024-11-14 22:29:42 +00:00
parent 5454630591
commit 2a50395bd7
2 changed files with 1 additions and 134 deletions

View File

@@ -1,5 +1,5 @@
"""FFmpeg management module"""
from .ffmpeg import FFmpegManager, FFmpegError, GPUError, DownloadError
from ffmpeg import FFmpegManager, FFmpegError, GPUError, DownloadError
__all__ = ['FFmpegManager', 'FFmpegError', 'GPUError', 'DownloadError']