chore: update cnf format

This commit is contained in:
iff 2024-12-08 11:48:53 +01:00
parent 328f6a4978
commit b186394e18
3 changed files with 15 additions and 14 deletions

View file

@ -149,7 +149,7 @@ pub fn get_packages(
let packages = result
.lines()
.skip(1)
.map(|line| line.to_string())
.map(|line| line.trim().to_string())
.collect();
return Some(packages);
}