fix: import error
This commit is contained in:
parent
c73aeb58e9
commit
12ac233a5b
|
|
@ -5,16 +5,4 @@ Audio Processing Module
|
|||
Handles audio editing, rhythm detection, and audio effects using Librosa, Pydub, and other audio libraries.
|
||||
"""
|
||||
|
||||
from .core import AudioProcessor
|
||||
from .rhythm_detection import RhythmDetector
|
||||
from .audio_effects import AudioEffects
|
||||
from .voice_separation import VoiceSeparator
|
||||
from .tts import TextToSpeech
|
||||
|
||||
__all__ = [
|
||||
"AudioProcessor",
|
||||
"RhythmDetector",
|
||||
"AudioEffects",
|
||||
"VoiceSeparator",
|
||||
"TextToSpeech"
|
||||
]
|
||||
__all__ = []
|
||||
|
|
|
|||
|
|
@ -5,35 +5,4 @@ Services Module
|
|||
Provides background services, file management, and task queue functionality.
|
||||
"""
|
||||
|
||||
try:
|
||||
from .file_manager import FileManager
|
||||
except ImportError:
|
||||
FileManager = None
|
||||
|
||||
try:
|
||||
from .task_queue import TaskQueue
|
||||
except ImportError:
|
||||
TaskQueue = None
|
||||
|
||||
try:
|
||||
from .project_manager import ProjectManager
|
||||
except ImportError:
|
||||
ProjectManager = None
|
||||
|
||||
try:
|
||||
from .cache_manager import CacheManager
|
||||
except ImportError:
|
||||
CacheManager = None
|
||||
|
||||
try:
|
||||
from .template_manager import TemplateManager
|
||||
except ImportError:
|
||||
TemplateManager = None
|
||||
|
||||
__all__ = [
|
||||
"FileManager",
|
||||
"TaskQueue",
|
||||
"ProjectManager",
|
||||
"CacheManager",
|
||||
"TemplateManager"
|
||||
]
|
||||
__all__ = []
|
||||
|
|
|
|||
Loading…
Reference in New Issue