Skip to content

Commit

Permalink
Update Client constructor binding signature
Browse files Browse the repository at this point in the history
Signed-off-by: Michel Hidalgo <michel@ekumenlabs.com>
  • Loading branch information
hidmic committed Mar 31, 2021
1 parent cb1ec86 commit 65e60b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rclpy/src/rclpy/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ void
define_client(py::object module)
{
py::class_<Client, Destroyable>(module, "Client")
.def(py::init<py::capsule, py::object, const char *, py::capsule>())
.def(py::init<py::capsule, py::object, const char *, py::object>())
.def_property_readonly(
"pointer", [](const Client & client) {
return reinterpret_cast<size_t>(client.rcl_ptr());
Expand Down

0 comments on commit 65e60b6

Please sign in to comment.