From 2096c18da6c926351cdc2431e11e0f2b5f42814c Mon Sep 17 00:00:00 2001 From: Murilo M Marinho <46012516+mmmarinho@users.noreply.github.com> Date: Wed, 19 Feb 2025 15:21:53 +0000 Subject: [PATCH] [DQ_CoppeliaSimInterfaceZMQ_py.cpp] Removing extra string argument from `get_object_rotation`. --- src/interfaces/coppeliasim/DQ_CoppeliaSimInterfaceZMQ_py.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/coppeliasim/DQ_CoppeliaSimInterfaceZMQ_py.cpp b/src/interfaces/coppeliasim/DQ_CoppeliaSimInterfaceZMQ_py.cpp index 747d3b0..55c4ebf 100644 --- a/src/interfaces/coppeliasim/DQ_CoppeliaSimInterfaceZMQ_py.cpp +++ b/src/interfaces/coppeliasim/DQ_CoppeliaSimInterfaceZMQ_py.cpp @@ -61,7 +61,7 @@ void init_DQ_CoppeliaSimInterfaceZMQ_py(py::module& m) "Sets object translation."); dqcsinterfacezmq_py.def("get_object_rotation", - (DQ (DQ_CoppeliaSimInterfaceZMQ::*) (const std::string&, const std::string&))&DQ_CoppeliaSimInterfaceZMQ::get_object_rotation, + (DQ (DQ_CoppeliaSimInterfaceZMQ::*) (const std::string&))&DQ_CoppeliaSimInterfaceZMQ::get_object_rotation, "Gets object rotation."); dqcsinterfacezmq_py.def("set_object_rotation",