10 lines
208 B
Python
10 lines
208 B
Python
|
|
try:
|
||
|
|
from .AbletonOSC.manager import Manager
|
||
|
|
except ImportError:
|
||
|
|
# Allows pytest to import without Ableton's runtime present
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
def create_instance(c_instance):
|
||
|
|
return Manager(c_instance)
|