chore: remove un-needed fmt skip

This commit is contained in:
Cain 2023-11-08 20:22:04 +00:00
parent 6b92e883ef
commit 92ad618723

View file

@ -20,7 +20,6 @@ struct Cli {
port: Option<u16>,
}
#[rustfmt::skip]
fn main() -> Result<()> {
let args = Cli::parse();
@ -32,5 +31,4 @@ fn main() -> Result<()> {
println!("{:#?}", query(game, &args.ip, args.port)?.as_json());
Ok(())
}