diff --git a/leo/cli/commands/mod.rs b/leo/cli/commands/mod.rs index 43eb7bf01e..ad3dd2e09d 100644 --- a/leo/cli/commands/mod.rs +++ b/leo/cli/commands/mod.rs @@ -57,15 +57,16 @@ use super::*; use crate::cli::helpers::context::*; use leo_errors::{emitter::Handler, CliError, PackageError, Result}; use leo_package::{build::*, outputs::OutputsDirectory, package::*}; -use snarkvm::prelude::{block::Transaction, Ciphertext, Plaintext, PrivateKey, Record, ViewKey}; -use snarkvm::{console::network::Network}; +use snarkvm::{ + console::network::Network, + prelude::{block::Transaction, Ciphertext, Plaintext, PrivateKey, Record, ViewKey}, +}; use clap::Parser; use colored::Colorize; use std::str::FromStr; use tracing::span::Span; - /// Base trait for the Leo CLI, see methods and their documentation for details. pub trait Command { /// If the current command requires running another command beforehand