chore: cleanup

This commit is contained in:
iff 2025-01-06 20:23:50 +01:00
parent eb4d71e157
commit 7980819d6a
4 changed files with 6 additions and 8 deletions

View file

@ -33,7 +33,7 @@ pub fn suggest_candidates(data: &mut Data) {
thread::scope(|s| {
s.spawn(|| {
for module in modules {
let new_candidates = module_output(&data, module);
let new_candidates = module_output(data, module);
if let Some(candidates) = new_candidates {
add_candidates_no_dup(command, &mut module_candidates, &candidates);