Skip to content

Commit 0908ad6

Browse files
committed
chore: fmt
1 parent 4d10812 commit 0908ad6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ pub mod aoc_cli {
143143
match self {
144144
AocCliError::CommandNotFound => write!(f, "aoc-cli is not present in environment."),
145145
AocCliError::CommandNotCallable => write!(f, "aoc-cli could not be called."),
146-
AocCliError::BadExitStatus(_) => write!(f, "aoc-cli exited with a non-zero status."),
146+
AocCliError::BadExitStatus(_) => {
147+
write!(f, "aoc-cli exited with a non-zero status.")
148+
}
147149
AocCliError::IoError => write!(f, "could not write output files to file system."),
148150
}
149151
}
@@ -192,7 +194,6 @@ pub mod aoc_cli {
192194
} else {
193195
Err(AocCliError::BadExitStatus(output))
194196
}
195-
196197
}
197198

198199
fn get_input_path(day: u8) -> String {

0 commit comments

Comments
 (0)