Skip to content

Commit c328df5

Browse files
committed
cargo fmt
1 parent a9fc8a4 commit c328df5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

crates/duckdb/src/inner_connection.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ impl InnerConnection {
3434
}
3535
let interrupt = Arc::new(InterruptHandle::new(con));
3636

37-
Ok(Self { db, con, interrupt, owned })
37+
Ok(Self {
38+
db,
39+
con,
40+
interrupt,
41+
owned,
42+
})
3843
}
3944

4045
pub fn open_with_flags(c_path: &CStr, config: Config) -> Result<Self> {

0 commit comments

Comments
 (0)