Skip to content

Commit

Permalink
[core/python] Do not decode telemetry constant automatically.
Browse files Browse the repository at this point in the history
  • Loading branch information
duburcqa committed Apr 12, 2024
1 parent f1168c4 commit c78b9db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/jiminy_pywrap/src/engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,8 @@ namespace jiminy::python
}
else
{
constants[key] = value; // convertToPython(value, false);
constants[key] = bp::object(
bp::handle<>(PyBytes_FromStringAndSize(value.c_str(), value.size())));
}
}

Expand Down

0 comments on commit c78b9db

Please sign in to comment.