File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,6 @@ impl ToSql for PythonDTO {
307307#[ allow( clippy:: needless_pass_by_value) ]
308308pub 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) ]
334333pub fn py_to_rust ( parameter : & pyo3:: Bound < ' _ , PyAny > ) -> RustPSQLDriverPyResult < PythonDTO > {
335- println ! ( "pytorust" ) ;
336334 if parameter. is_none ( ) {
337335 return Ok ( PythonDTO :: PyNone ) ;
338336 }
You can’t perform that action at this time.
0 commit comments