From d7c4fa40fe3ae4c995e942297c78cd1ea78f329d Mon Sep 17 00:00:00 2001 From: Murph Murphy Date: Tue, 14 Jan 2025 13:43:46 -0700 Subject: [PATCH] Run `cargo fmt` --- src/tx/write/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tx/write/mod.rs b/src/tx/write/mod.rs index ff9214d..64e851b 100644 --- a/src/tx/write/mod.rs +++ b/src/tx/write/mod.rs @@ -408,7 +408,11 @@ impl BaseTransaction { /// # Errors /// /// Will return `Err` if an IO error occurs. - pub(super) fn remove_single>(&mut self, partition: &TxPartitionHandle, key: K) { + pub(super) fn remove_single>( + &mut self, + partition: &TxPartitionHandle, + key: K, + ) { // TODO: PERF: slow?? self.memtables .entry(partition.inner.name.clone())