Skip to content

Commit c08c5a8

Browse files
committed
chore: fmt
1 parent ea94b24 commit c08c5a8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cli/src/repl.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,11 @@ fn initialize_global_object(agent: &mut Agent, global_object: Object, mut gc: Gc
306306
std::process::exit(1);
307307
}
308308
};
309-
if agent.run_parsed_module(module.unbind(), None, gc.reborrow()).unbind().is_err() {
309+
if agent
310+
.run_parsed_module(module.unbind(), None, gc.reborrow())
311+
.unbind()
312+
.is_err()
313+
{
310314
eprintln!("⚠️ Warning: Error loading extension {}", specifier);
311315
handle_runtime_error_with_message("Module evaluation failed".to_string());
312316
}

0 commit comments

Comments
 (0)