Files
ableton-osc/__init__.py
T

10 lines
209 B
Python
Raw Normal View History

try:
from .ableton_osc.manager import Manager
except ImportError:
# Allows pytest to import without Ableton's runtime present
pass
def create_instance(c_instance):
return Manager(c_instance)