Skip to content

Commit bf33b69

Browse files
[autofix.ci] apply automated fixes
1 parent 88adfe1 commit bf33b69

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

crates/biome_grit_patterns/src/pattern_compiler/call_compiler.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,9 @@ pub(super) fn node_to_args_pairs(
179179
.strip_prefix(lang.metavariable_prefix())
180180
.filter(|stripped| {
181181
expected_params.as_ref().is_none_or(|expected| {
182-
expected.iter().any(|exp| exp == &var_name || exp == stripped)
182+
expected
183+
.iter()
184+
.any(|exp| exp == &var_name || exp == stripped)
183185
})
184186
})
185187
.or_else(|| {

0 commit comments

Comments
 (0)