diff --git a/src/document.rs b/src/document.rs index 5fa3d46..1f5d4d6 100644 --- a/src/document.rs +++ b/src/document.rs @@ -195,7 +195,7 @@ pub(crate) fn extract_value(any: &PyAny) -> PyResult { return Ok(Value::Facet(facet.inner)); } if let Ok(b) = any.extract::>() { - return Ok(Value::Bytes(b)) + return Ok(Value::Bytes(b)); } Err(to_pyerr(format!("Value unsupported {any:?}"))) }