Skip to content

Commit

Permalink
Add dummy submodules to get rid of importing from pymp
Browse files Browse the repository at this point in the history
  • Loading branch information
KolinGuo committed Apr 16, 2024
1 parent 3c36dae commit fb9aa3d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 3 deletions.
4 changes: 1 addition & 3 deletions mplib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
from mplib.planner import Planner
from mplib.pymp import (
ArticulatedModel,
AttachedBody,
PlanningWorld,
Pose,
collision_detection,
kinematics,
planning,
set_global_seed,
)

Expand Down
1 change: 1 addition & 0 deletions mplib/collision_detection/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..pymp.collision_detection import *
1 change: 1 addition & 0 deletions mplib/collision_detection/fcl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..pymp.collision_detection.fcl import *
1 change: 1 addition & 0 deletions mplib/kinematics/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..pymp.kinematics import *
1 change: 1 addition & 0 deletions mplib/kinematics/kdl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..pymp.kinematics.kdl import *
1 change: 1 addition & 0 deletions mplib/kinematics/pinocchio.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..pymp.kinematics.pinocchio import *
1 change: 1 addition & 0 deletions mplib/planning/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..pymp.planning import *
1 change: 1 addition & 0 deletions mplib/planning/ompl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..pymp.planning.ompl import *

0 comments on commit fb9aa3d

Please sign in to comment.