Skip to content

Commit

Permalink
Merge branch 'main' into moveit_py_execute_functions_trajectory_execu…
Browse files Browse the repository at this point in the history
…tion_manager
  • Loading branch information
sjahr authored Dec 4, 2023
2 parents 7813bac + 2c10283 commit 25ba427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moveit_py/src/moveit/moveit_ros/moveit_cpp/moveit_cpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void initMoveitPy(py::module& m)
.def("execute",
py::overload_cast<const robot_trajectory::RobotTrajectoryPtr&, const std::vector<std::string>&>(
&moveit_cpp::MoveItCpp::execute),
py::arg("robot_trajectory"), py::arg("controllers"),
py::arg("robot_trajectory"), py::arg("controllers"), py::call_guard<py::gil_scoped_release>(),
R"(
Execute a trajectory (planning group is inferred from robot trajectory object).
)")
Expand Down

0 comments on commit 25ba427

Please sign in to comment.