Skip to content

Commit

Permalink
fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Mar 23, 2024
1 parent 1075fa7 commit 86a006f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions crates/cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use crate::{
flags::{GlobalFormatFlags, OutputFormat},
updater::Updater,
};
use anyhow::{Error, Result};
use anyhow::{Result};
use apply::ApplyArgs;
use auth::{Auth, AuthCommands};
use check::CheckArg;
Expand All @@ -52,7 +52,7 @@ use indicatif_log_bridge::LogWrapper;
use init::InitArgs;
use install::InstallArgs;
use list::ListArgs;
use log::{debug, LevelFilter};
use log::{LevelFilter};
use lsp::LspArgs;
use marzano_messenger::emit::ApplyDetails;
use parse::ParseArgs;
Expand Down
6 changes: 3 additions & 3 deletions crates/cli/src/commands/plumbing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ use std::io::{stdin, Read};
use std::path::Path;
use std::path::PathBuf;

use crate::analytics::{track_event_line, AnalyticsEventName};
use crate::analytics::{track_event_line};
use crate::flags::GlobalFormatFlags;
use crate::lister::list_applyables;
use crate::resolver::{get_grit_files_from, resolve_from, Source};
use crate::utils::is_pattern_name;
use futures::future::join_all;

use super::super::analytics::{track_event, AnalyticsArgs};

use super::super::analytics::{AnalyticsArgs};
use super::apply_pattern::{run_apply_pattern, ApplyPatternArgs};
use super::check::{run_check, CheckArg};
use super::init::{init_config_from_cwd, init_global_grit_modules};
Expand Down

0 comments on commit 86a006f

Please sign in to comment.