From 1e14538caf397f6e6cc3e2393381ddb4565b5704 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Sat, 12 Apr 2025 00:30:18 -0500 Subject: [PATCH] move imports around --- src/instructions/vector.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instructions/vector.rs b/src/instructions/vector.rs index c39e430..1762b08 100644 --- a/src/instructions/vector.rs +++ b/src/instructions/vector.rs @@ -1,5 +1,5 @@ -use rust_decimal::Decimal; use crate::push::state::PushState; +use rust_decimal::Decimal; pub fn _concat(vals: Vec>) -> Option> where