fix imports

This commit is contained in:
pacnpal
2024-11-14 23:05:16 +00:00
parent a0b3a56d4f
commit dfba1a4e30
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
"""FFmpeg management package"""
from videoarchiver.ffmpeg.exceptions import FFmpegError, GPUError, DownloadError
from videoarchiver.ffmpeg.ffmpeg_manager import FFmpegManager
from .exceptions import FFmpegError, GPUError, DownloadError
from .ffmpeg_manager import FFmpegManager
__all__ = ['FFmpegManager', 'FFmpegError', 'GPUError', 'DownloadError']