Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 712946929
  • Loading branch information
MediaPipe Team authored and copybara-github committed Jan 7, 2025
1 parent cf2021a commit 04f8008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediapipe/python/pybind/packet_getter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ void InternalPacketGetters(pybind11::module* m) {
if (proto_vector.value().empty()) {
return std::string();
}
return proto_vector.value()[0]->GetTypeName();
return std::string(proto_vector.value()[0]->GetTypeName());
},
py::return_value_policy::move);

Expand Down

0 comments on commit 04f8008

Please sign in to comment.