__init__.py 236 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
def _init_fb_ctypes():
    # Initiaization required only in facebook infrastructure to use soundfile
    import libfb.py.ctypesmonkeypatch
    libfb.py.ctypesmonkeypatch.install()


try:
    _init_fb_ctypes()
except Exception:
    pass