ai-content-maker/.venv/Lib/site-packages/torchaudio/backend/sox_io_backend.py

15 lines
477 B
Python
Raw Permalink Normal View History

2024-05-03 04:18:51 +03:00
def __getattr__(name: str):
import warnings
warnings.warn(
"Torchaudio's I/O functions now support par-call bakcend dispatch. "
"Importing backend implementation directly is no longer guaranteed to work. "
"Please use `backend` keyword with load/save/info function, instead of "
"calling the udnerlying implementation directly.",
stacklevel=2,
)
from . import _sox_io_backend
return getattr(_sox_io_backend, name)