File size: 276 Bytes
1ee5470
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# https://github.com/librosa/librosa/issues/1682

import lazy_loader as lazy
from .version import version as __version__

_filename = __file__
if _filename.endswith('.pyc'):
    _filename = _filename[:-1]

__getattr__, __dir__, __all__ = lazy.attach_stub(__name__, _filename)