From e5faa3273a75d587917d01e2338276d6ced2b47c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20L=C3=B3pez?= Date: Sat, 18 Jan 2025 19:36:32 +0100 Subject: [PATCH] syntactic changes: remove unused self dependency to appease to our Clippy overlord... --- simulator/runner/execution.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/runner/execution.rs b/simulator/runner/execution.rs index af84178ef..e39fed01f 100644 --- a/simulator/runner/execution.rs +++ b/simulator/runner/execution.rs @@ -3,7 +3,7 @@ use std::sync::{Arc, Mutex}; use limbo_core::{LimboError, Result}; use crate::generation::{ - self, pick_index, + pick_index, plan::{Interaction, InteractionPlan, InteractionPlanState, ResultSet}, };