fix some pedantic lints

This commit is contained in:
Dr. Matthias Ratajczak
2023-01-10 15:25:54 +01:00
parent 5e874d79d4
commit 9f649aae2e
4 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ use anyhow::{Context, Result};
use pacdef::{args, Group, Pacdef};
fn main() -> Result<()> {
let args = args::get_args();
let args = args::get();
let groups = Group::load_from_dir()?;
let pacdef = Pacdef::new(args, groups);
pacdef.run_action_from_arg().context("running action")