remove empty imports

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-12 18:12:03 -05:00
parent e55383ab0a
commit 936315c2ff
2 changed files with 0 additions and 2 deletions

View File

@ -1,6 +1,5 @@
use crate::push::state::PushState; use crate::push::state::PushState;
use rust_decimal::Decimal; use rust_decimal::Decimal;
use std::collections::VecDeque;
/// Generates an index between 0 and length. Takes abs(num) and then mods it by length. /// Generates an index between 0 and length. Takes abs(num) and then mods it by length.
fn bounded_idx(num: i128, length: usize) -> usize { fn bounded_idx(num: i128, length: usize) -> usize {

View File

@ -1,7 +1,6 @@
use instructions::utils::NumericTrait; use instructions::utils::NumericTrait;
use rust_decimal::MathematicalOps; use rust_decimal::MathematicalOps;
use rust_decimal::prelude::*; use rust_decimal::prelude::*;
use std::collections::VecDeque;
mod instructions; mod instructions;
mod push; mod push;