Skip to content

Commit 2bfa964

Browse files
committed
fix fmt
1 parent 4a97eff commit 2bfa964

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/main.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,10 @@ fn main() {
3434
let frontend = frontend.clone();
3535

3636
thread::spawn(move || {
37-
let afrim_conf =
38-
AfrimConfig::from_file(&args.config_file).unwrap_or_else(|err| {
39-
frontend.raise_error("Problem parsing config file", &err.to_string());
40-
process::exit(1);
41-
});
37+
let afrim_conf = AfrimConfig::from_file(&args.config_file).unwrap_or_else(|err| {
38+
frontend.raise_error("Problem parsing config file", &err.to_string());
39+
process::exit(1);
40+
});
4241

4342
// End the program if check only.
4443
if args.check {

0 commit comments

Comments
 (0)