chore: bow to the clippy

This commit is contained in:
rvcas
2023-03-14 17:03:28 -04:00
parent 724f1ac4b6
commit 2a00ef281b
4 changed files with 3 additions and 10 deletions

View File

@@ -138,7 +138,6 @@ pub fn aiken_files_excluding_gitignore(dir: &Path) -> impl Iterator<Item = PathB
.follow_links(true)
.require_git(false)
.build()
.into_iter()
.filter_map(Result::ok)
.filter(|e| e.file_type().map(|t| t.is_file()).unwrap_or(false))
.map(ignore::DirEntry::into_path)