Skip to content

Commit 20348f3

Browse files
author
AGAEV Denis E
committed
Remove prints
1 parent 010ad47 commit 20348f3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/value_converter.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@ impl ToSql for PythonDTO {
307307
#[allow(clippy::needless_pass_by_value)]
308308
pub fn convert_parameters(parameters: Py<PyAny>) -> RustPSQLDriverPyResult<Vec<PythonDTO>> {
309309
let mut result_vec: Vec<PythonDTO> = vec![];
310-
println!("convert");
311310

312311
result_vec = Python::with_gil(|gil| {
313312
let params = parameters.extract::<Vec<Py<PyAny>>>(gil).map_err(|_| {
@@ -332,7 +331,6 @@ pub fn convert_parameters(parameters: Py<PyAny>) -> RustPSQLDriverPyResult<Vec<P
332331
/// or value of the type is incorrect.
333332
#[allow(clippy::too_many_lines)]
334333
pub fn py_to_rust(parameter: &pyo3::Bound<'_, PyAny>) -> RustPSQLDriverPyResult<PythonDTO> {
335-
println!("pytorust");
336334
if parameter.is_none() {
337335
return Ok(PythonDTO::PyNone);
338336
}

0 commit comments

Comments
 (0)