Skip to content

Commit

Permalink
fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre committed Mar 27, 2024
1 parent e7fcd9d commit da0d8ad
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/uu/login/src/login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,15 @@
// file that was distributed with this source code.

use clap::crate_version;
use clap::{Arg, Command};
use std::process::{Command as SystemCommand, Stdio};
use std::thread::sleep;
use std::time::Duration;
use clap::Command;
use uucore::{error::UResult, format_usage, help_about, help_usage};

const ABOUT: &str = help_about!("login.md");
const USAGE: &str = help_usage!("login.md");

#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let matches = uu_app().try_get_matches_from(args)?;
let _matches = uu_app().try_get_matches_from(args)?;
Ok(())
}

Expand Down

0 comments on commit da0d8ad

Please sign in to comment.