Skip to content

Commit

Permalink
Rustfmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
DFINITYManu committed Feb 20, 2025
1 parent c85a83b commit d9cc192
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion rs/cli/src/commands/der_to_principal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::path::PathBuf;
use clap::Args;

use crate::auth::AuthRequirement;
use crate::exe::{ExecutableCommand, args::GlobalArgs};
use crate::exe::{args::GlobalArgs, ExecutableCommand};

#[derive(Args, Debug)]
pub struct DerToPrincipal {
Expand Down
2 changes: 1 addition & 1 deletion rs/cli/src/commands/firewall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use tempfile::NamedTempFile;
use crate::{
auth::AuthRequirement,
ctx::DreContext,
exe::{ExecutableCommand, args::GlobalArgs},
exe::{args::GlobalArgs, ExecutableCommand},
forum::ForumPostKind,
ic_admin::{IcAdminProposal, IcAdminProposalCommand, IcAdminProposalOptions},
proposal_executors::{ProducesProposalResult, ProposalResponseWithId, RunnableViaIcAdmin},
Expand Down
2 changes: 1 addition & 1 deletion rs/cli/src/commands/update_unassigned_nodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use ic_canisters::registry::RegistryCanisterWrapper;
use ic_types::PrincipalId;

use crate::auth::AuthRequirement;
use crate::exe::{ExecutableCommand, args::GlobalArgs};
use crate::exe::{args::GlobalArgs, ExecutableCommand};
use crate::forum::ForumPostKind;
use crate::submitter::{SubmissionParameters, Submitter};

Expand Down
2 changes: 1 addition & 1 deletion rs/cli/src/commands/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use serde_json::Value;
use tokio::task::JoinHandle;

use crate::auth::AuthRequirement;
use crate::exe::{ExecutableCommand, args::GlobalArgs};
use crate::exe::{args::GlobalArgs, ExecutableCommand};

#[derive(Args, Debug, Default)]
pub struct Upgrade {
Expand Down
2 changes: 1 addition & 1 deletion rs/cli/src/commands/vote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use log::info;
use spinners::{Spinner, Spinners};

use crate::auth::AuthRequirement;
use crate::exe::{ExecutableCommand, args::GlobalArgs};
use crate::exe::{args::GlobalArgs, ExecutableCommand};
use crate::{
confirm::{ConfirmationModeOptions, HowToProceed},
desktop_notify::DesktopNotifier,
Expand Down

0 comments on commit d9cc192

Please sign in to comment.