Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yczhang-nv committed Aug 29, 2024
1 parent 9c03ee9 commit 66922a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/morpheus/morpheus/_lib/src/messages/control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ void ControlMessageProxy::payload_from_python_meta(ControlMessage& self, const p

void ControlMessageProxy::set_tensors_from_python(ControlMessage& self, const pybind11::object& tensor_memory)
{
auto count = tensor_memory.attr("count").cast<TensorIndex>();
auto count = tensor_memory.attr("count").cast<TensorIndex>();
pybind11::object tensors = tensor_memory.attr("get_tensors")();
self.tensors(TensorMemoryInterfaceProxy::init(count, tensors));
}
Expand Down

0 comments on commit 66922a7

Please sign in to comment.