ChatBotPro / pydub_patch.py
yucelgumus61
Hugging Face için proje hazırlığı
fe980c5
Raw
History Blame Contribute Delete
264 Bytes
from unittest.mock import MagicMock
import sys
# Create fake audioop module
sys.modules['audioop'] = MagicMock()
sys.modules['pyaudioop'] = MagicMock()
# Don't import app here to avoid circular imports
# The app will import this module, not the other way around