Skip to content

Commit 3438417

Browse files
committed
clippy
1 parent 54891e7 commit 3438417

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/main.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,14 +265,12 @@ fn check_nixpkgs(nixpkgs_path: &Path, config: &Config) -> validation::Result<rat
265265

266266
// Only if we could successfully parse the structure, we do the evaluation checks
267267
structure.result_map(|package_names| {
268-
let eval_result = eval::check_values(
268+
eval::check_values(
269269
&nixpkgs_path,
270270
&mut nix_file_store,
271271
package_names.as_slice(),
272272
config,
273-
);
274-
// println!("{}:{}: eval_result: {eval_result:?}", file!(), line!());
275-
eval_result
273+
)
276274
})?
277275
};
278276

0 commit comments

Comments
 (0)