fix: import error

This commit is contained in:
root 2025-07-10 20:18:10 +08:00
parent c73aeb58e9
commit 12ac233a5b
2 changed files with 2 additions and 45 deletions

View File

@ -5,16 +5,4 @@ Audio Processing Module
Handles audio editing, rhythm detection, and audio effects using Librosa, Pydub, and other audio libraries. Handles audio editing, rhythm detection, and audio effects using Librosa, Pydub, and other audio libraries.
""" """
from .core import AudioProcessor __all__ = []
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"
]

View File

@ -5,35 +5,4 @@ Services Module
Provides background services, file management, and task queue functionality. Provides background services, file management, and task queue functionality.
""" """
try: __all__ = []
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"
]