From 41d9ebb8d5ec42d0d9e049ffb050860d8ea7dabb Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Thu, 16 Apr 2026 12:35:03 +0100 Subject: [PATCH] WIP --- rust/src/events/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust/src/events/mod.rs b/rust/src/events/mod.rs index de094a0f87..b289ebc823 100644 --- a/rust/src/events/mod.rs +++ b/rust/src/events/mod.rs @@ -34,7 +34,7 @@ use pyo3::{ PyAnyMethods, PyDict, PyDictMethods, PyIterator, PyList, PyMapping, PyMappingMethods, PyModule, PyModuleMethods, }, - wrap_pyfunction, Bound, IntoPyObject, Py, PyAny, PyResult, Python, + wrap_pyfunction, Bound, IntoPyObject, PyAny, PyResult, Python, }; use pythonize::{depythonize, pythonize}; use serde::{Deserialize, Serialize}; @@ -665,7 +665,6 @@ struct Event { impl Event { #[new] fn new_from_py<'a, 'py>( - py: Python<'py>, event_dict: &'a Bound<'py, PyAny>, room_version: &'a Bound<'py, PyAny>, internal_metadata_dict: &'a Bound<'py, PyDict>,