diff --git a/src/ffi/python.rs b/src/ffi/python.rs index 5b80e3d..7d09d46 100644 --- a/src/ffi/python.rs +++ b/src/ffi/python.rs @@ -511,7 +511,7 @@ impl PyTextChange { /* ------ Python module --------*/ #[pymodule] -fn codemp_client(_py: Python, m: &PyModule) -> PyResult<()> { +fn codemp(_py: Python, m: &PyModule) -> PyResult<()> { m.add_function(wrap_pyfunction!(codemp_init, m)?)?; m.add_function(wrap_pyfunction!(init_logger, m)?)?; m.add_class::()?;