Description
ProgressStyle::with_template(...).unwrap() at src/engine/llm.rs:174 and src/engine/scanner.rs:74. The template is a hardcoded literal that will never fail, but sets a bad precedent.
Suggested Fix
Use .expect("valid spinner template") to make intent clear.
Description
ProgressStyle::with_template(...).unwrap()atsrc/engine/llm.rs:174andsrc/engine/scanner.rs:74. The template is a hardcoded literal that will never fail, but sets a bad precedent.Suggested Fix
Use
.expect("valid spinner template")to make intent clear.