refactor: fix some pedantic clippy lints

This commit is contained in:
2026-05-10 18:02:54 +02:00
parent c8bedabe1f
commit 9f992caef9
2 changed files with 7 additions and 12 deletions
+2 -4
View File
@@ -93,7 +93,7 @@ fn main() -> anyhow::Result<()> {
"WARNING: No user ID was provided.\n\
You may experience problems importing generated keys into GnuPG.\n\
Use `--userid <USERID>` to add a user ID.\n"
)
);
}
let password = if args.password {
@@ -125,7 +125,5 @@ fn main() -> anyhow::Result<()> {
workers,
};
Fingerprunk::new_from_config(config).run()?;
Ok(())
Fingerprunk::new_from_config(config).run()
}