From 6ae491a6d89ec41ded6ee81651bb2659b37f19d0 Mon Sep 17 00:00:00 2001 From: Philippe Llerena Date: Fri, 2 May 2025 13:58:02 +0200 Subject: [PATCH] refactor(run): reorder imports for improved clarity --- src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.rs b/src/run.rs index 48c2ab4db1..a81f808e94 100644 --- a/src/run.rs +++ b/src/run.rs @@ -1,6 +1,6 @@ use crate::{ command, - config_files::{self, read_vendor_autoload_files, setup_config, nu_autoload_on_command}, + config_files::{self, nu_autoload_on_command, read_vendor_autoload_files, setup_config}, }; use log::trace; #[cfg(feature = "plugin")]