Skip to content

Commit 335e591

Browse files
committed
Removed debug info
Signed-off-by: chandr-andr (Kiselev Aleksandr) <[email protected]>
1 parent 4ff39a7 commit 335e591

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "psqlpy"
3-
version = "0.8.3"
3+
version = "0.8.4"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/value_converter.rs

-2
Original file line numberDiff line numberDiff line change
@@ -746,8 +746,6 @@ pub fn py_sequence_into_postgres_array(
746746
/// or value of the type is incorrect.
747747
#[allow(clippy::too_many_lines)]
748748
pub fn py_to_rust(parameter: &pyo3::Bound<'_, PyAny>) -> RustPSQLDriverPyResult<PythonDTO> {
749-
println!("{:?}", parameter.get_type().name()?);
750-
751749
if parameter.is_none() {
752750
return Ok(PythonDTO::PyNone);
753751
}

0 commit comments

Comments
 (0)