Skip to content

Commit 26fe57e

Browse files
chore(bindgen): fix fmt
1 parent 29fe3f3 commit 26fe57e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

crates/js-component-bindgen/src/esm_bindgen.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,10 @@ impl EsmBindgen {
356356
} else {
357357
uwrite!(output, "{external_name} as {iface_local_name}");
358358
}
359-
bound_external_names.push((external_name.to_string(), iface_local_name.to_string()));
359+
bound_external_names.push((
360+
external_name.to_string(),
361+
iface_local_name.to_string(),
362+
));
360363
}
361364

362365
ImportBinding::Local(local_names) => {
@@ -374,7 +377,8 @@ impl EsmBindgen {
374377
} else {
375378
uwrite!(output, "{external_name} as {local_name}");
376379
}
377-
bound_external_names.push((external_name.to_string(), local_name.to_string()));
380+
bound_external_names
381+
.push((external_name.to_string(), local_name.to_string()));
378382
}
379383
}
380384
};

0 commit comments

Comments
 (0)