Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
spenserblack committed Sep 12, 2023
1 parent 05feff3 commit 972be75
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gengo/src/analysis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ impl Analysis {
pub fn summary_with(&self, opts: SummaryOpts) -> Summary {
let mut summary = IndexMap::new();
let results = &self.0;
for entry in results.entries.iter().filter_map(|e| e.result.as_ref())
{
for entry in results.entries.iter().filter_map(|e| e.result.as_ref()) {
if !(opts.all || entry.detectable()) {
continue;
}
Expand Down

0 comments on commit 972be75

Please sign in to comment.