Skip to content

Commit 239e4b2

Browse files
committed
Remove useless imports
1 parent 2b04018 commit 239e4b2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/common.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ use pyo3::{
55
};
66

77
use crate::{
8-
driver::transaction_options::{IsolationLevel, ReadVariant},
98
exceptions::rust_errors::RustPSQLDriverPyResult,
109
query_result::{PSQLDriverPyQueryResult, PSQLDriverSinglePyQueryResult},
1110
value_converter::{convert_parameters, PythonDTO, QueryParameter},

src/driver/transaction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use super::{
1717
transaction_options::{IsolationLevel, ReadVariant},
1818
};
1919
use crate::common::ObjectQueryTrait;
20-
use std::{borrow::Borrow, collections::HashSet, sync::Arc};
20+
use std::{collections::HashSet, sync::Arc};
2121

2222
pub trait TransactionObjectTrait {
2323
fn start_transaction(

0 commit comments

Comments
 (0)