diff --git a/python/morpheus/morpheus/_lib/src/messages/control.cpp b/python/morpheus/morpheus/_lib/src/messages/control.cpp index 5bb3a3391f..d5473d877a 100644 --- a/python/morpheus/morpheus/_lib/src/messages/control.cpp +++ b/python/morpheus/morpheus/_lib/src/messages/control.cpp @@ -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(); + auto count = tensor_memory.attr("count").cast(); pybind11::object tensors = tensor_memory.attr("get_tensors")(); self.tensors(TensorMemoryInterfaceProxy::init(count, tensors)); }