Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Dec 13, 2023
1 parent 3e26e3c commit 0b53332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tooling/nargo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub fn insert_all_files_for_package_into_file_manager(

// Get all files in the package and add them to the file manager
let paths =
get_all_paths_in_dir(&entry_path_parent).expect("could not get all paths in the package");
get_all_paths_in_dir(entry_path_parent).expect("could not get all paths in the package");
for path in paths {
let source = std::fs::read_to_string(path.as_path())
.unwrap_or_else(|_| panic!("could not read file {:?} into string", path));
Expand Down

0 comments on commit 0b53332

Please sign in to comment.