We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d48163a commit 5bf59e2Copy full SHA for 5bf59e2
src/value_converter/models/serde_value.rs
@@ -60,8 +60,7 @@ impl<'a> FromSql<'a> for InternalSerdeValue {
60
fn serde_value_from_list(_gil: Python<'_>, bind_value: &Bound<'_, PyAny>) -> PSQLPyResult<Value> {
61
let py_list = bind_value.downcast::<PyList>().map_err(|e| {
62
RustPSQLDriverError::PyToRustValueConversionError(format!(
63
- "Parameter must be a list, but it's not: {}",
64
- e
+ "Parameter must be a list, but it's not: {e}"
65
))
66
})?;
67
0 commit comments