Skip to content

Commit

Permalink
style: fix more clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin Becher authored and Armin Becher committed Feb 8, 2025
1 parent e63ebbd commit ff026dc
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,16 +451,13 @@ pub async fn run(config: &Config) -> Result<(), ()> {
for broken_ref in broken_references {
warnings += 1;
println!(
"{}",
format!(
"[{:^4}] {}:{}:{} => {} - {}",
&"Warn".yellow(),
broken_ref.source,
broken_ref.line,
broken_ref.column,
broken_ref.reference,
broken_ref.error
)
"[{:^4}] {}:{}:{} => {} - {}",
&"Warn".yellow(),
broken_ref.source,
broken_ref.line,
broken_ref.column,
broken_ref.reference,
broken_ref.error
);
/* if is_github_runner_env {
println!(
Expand Down

0 comments on commit ff026dc

Please sign in to comment.