diff --git a/bindings/python/src/lib.rs b/bindings/python/src/lib.rs index fb8189c2d..31a82389d 100644 --- a/bindings/python/src/lib.rs +++ b/bindings/python/src/lib.rs @@ -300,7 +300,7 @@ pub fn connect(path: &str) -> Result { fn row_to_py(py: Python, row: &limbo_core::Row) -> PyObject { let py_values: Vec = row - .values + .get_values() .iter() .map(|value| match value.to_value() { limbo_core::Value::Null => py.None(),