Spaces:
Running
Running
RemiFabre commited on
Commit Β·
e993db5
1
Parent(s): 431d0b3
Use absolute package imports in main
Browse files- Theremini/main.py +2 -2
Theremini/main.py
CHANGED
|
@@ -12,8 +12,8 @@ from reachy_mini.utils import create_head_pose
|
|
| 12 |
from scamp import Session
|
| 13 |
from scipy.spatial.transform import Rotation as R
|
| 14 |
|
| 15 |
-
from .config import get_active_instruments
|
| 16 |
-
from .dashboard import DASHBOARD_PORT, DashboardServer, set_status
|
| 17 |
|
| 18 |
# ββββββββββββββββββ mapping constants βββββββββββββββββββββββββββββββ
|
| 19 |
ROLL_DEG_RANGE = (-60, 60) # head roll span
|
|
|
|
| 12 |
from scamp import Session
|
| 13 |
from scipy.spatial.transform import Rotation as R
|
| 14 |
|
| 15 |
+
from Theremini.config import get_active_instruments
|
| 16 |
+
from Theremini.dashboard import DASHBOARD_PORT, DashboardServer, set_status
|
| 17 |
|
| 18 |
# ββββββββββββββββββ mapping constants βββββββββββββββββββββββββββββββ
|
| 19 |
ROLL_DEG_RANGE = (-60, 60) # head roll span
|