Skip to content

Commit 47e343f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 553982f commit 47e343f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

script/grasp_ball.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from hpp import Transform
2-
from hpp.corbaserver.manipulation import ConstraintGraph, Constraints
31
from manipulation import (
42
Ground,
53
PathPlayer, # noqa: F401
@@ -11,6 +9,9 @@
119
vf,
1210
)
1311

12+
from hpp import Transform
13+
from hpp.corbaserver.manipulation import ConstraintGraph, Constraints
14+
1415
vf.loadEnvironmentModel(Ground, "ground")
1516
vf.loadObjectModel(Pokeball, "pokeball")
1617
robot.setJointBounds(

script/grasp_ball_in_box.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from hpp.corbaserver import Client # noqa: F401
2-
from hpp.corbaserver.manipulation import ConstraintGraph
31
from manipulation import (
42
Box,
53
Ground,
@@ -10,6 +8,9 @@
108
vf,
119
)
1210

11+
from hpp.corbaserver import Client # noqa: F401
12+
from hpp.corbaserver.manipulation import ConstraintGraph
13+
1314
vf.loadEnvironmentModel(Ground, "ground")
1415
vf.loadEnvironmentModel(Box, "box")
1516
vf.moveObstacle("box/base_link_0", [0.3 + 0.04, 0, 0.04, 0, 0, 0, 1])

script/rrt.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
from motion_planner import MotionPlanner
2+
13
from hpp.corbaserver import Client, ProblemSolver
24
from hpp.corbaserver.practicals.ur5 import Robot
35
from hpp.gepetto import PathPlayer, ViewerFactory # noqa: F401
4-
from motion_planner import MotionPlanner
56

67
Client().problem.resetProblem()
78

0 commit comments

Comments
 (0)