Skip to content

Commit 4183a2f

Browse files
committed
refactor: . Remove braces aruond arrow function body
1 parent c6787bb commit 4183a2f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/Query/Explain/Explainer.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,7 @@ export class Explainer {
5454
return this.indent('No filters supplied. All tasks will match the query.\n');
5555
}
5656

57-
return query.filters
58-
.map((filter) => {
59-
return filter.explainFilterIndented(this.indentation);
60-
})
61-
.join('\n');
57+
return query.filters.map((filter) => filter.explainFilterIndented(this.indentation)).join('\n');
6258
}
6359

6460
public explainGroups(query: Query) {

0 commit comments

Comments
 (0)