fix some pedantic lints

This commit is contained in:
Dr. Matthias Ratajczak
2023-02-01 16:42:49 +01:00
parent 2989e40925
commit 57aa7bdc94
6 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ pub(crate) fn search_packages(args: &ArgMatches, groups: &HashSet<Group>) -> Res
for section in &group.sections {
for package in &section.packages {
if re.is_match(&package.name) {
vec.push((group, section, package))
vec.push((group, section, package));
}
}
}