b7cec9d24b
Python package naming convention uses snake_case. Update the import in the root __init__.py and the setuptools include pattern in pyproject.toml. Internal relative imports within the package are unaffected. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
209 B
Python
10 lines
209 B
Python
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)
|