From d210ee149783cf1a25a3e5606a2589e645c0f677 Mon Sep 17 00:00:00 2001 From: "Levy A." Date: Sat, 12 Apr 2025 18:55:48 -0300 Subject: [PATCH] cargo fmt --- core/vdbe/mod.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/vdbe/mod.rs b/core/vdbe/mod.rs index c5ab69eb9..a95cc7fba 100644 --- a/core/vdbe/mod.rs +++ b/core/vdbe/mod.rs @@ -285,7 +285,10 @@ impl ProgramState { } pub fn get_parameter(&self, index: NonZero) -> OwnedValue { - self.parameters.get(&index).cloned().unwrap_or(OwnedValue::Null) + self.parameters + .get(&index) + .cloned() + .unwrap_or(OwnedValue::Null) } pub fn reset(&mut self) {