Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion monarch_tensor_worker/src/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ enum PyArg<'a> {
}

/// Serialize into a `PyObject`.
impl<'py> TryIntoPyObjectUnsafe<'py, PyAny> for &PyArg<'py> {
impl<'a, 'py> TryIntoPyObjectUnsafe<'py, PyAny> for &PyArg<'a> {
unsafe fn try_to_object_unsafe(self, py: Python<'py>) -> PyResult<Bound<'py, PyAny>> {
match self {
// SAFETY: This inherits the unsafety of `rvalue_to_ivalue` (see comment
Expand Down
Loading