Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
IogaMaster committed Sep 28, 2023
1 parent f24eb00 commit d207504
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions crates/nufmt_cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
use clap::Parser;

Check warning on line 1 in crates/nufmt_cli/src/main.rs

View workflow job for this annotation

GitHub Actions / format rust files

Diff in /home/runner/work/nufmt/nufmt/crates/nufmt_cli/src/main.rs

use log::{error, info, trace};
use log::{trace};
use std::{
fs,
io::Write,
path::{Path, PathBuf},
path::{PathBuf},
};

use nufmt::{config::Config, format_directory, format_string};

use crate::utils::*;


/// the CLI signature of the `nufmt` executable.
#[derive(Parser)]
Expand Down

0 comments on commit d207504

Please sign in to comment.