Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda committed Sep 16, 2024
1 parent c304528 commit eee947b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/course.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ fn get_course_props<A>(
.into_string()
.wrap_err("failed to parse the course calendar")?,
))
.map_err(|e| eyre!("{e}").wrap_err("failed to parse the course calendar"))?.first()
.map_err(|e| eyre!("{e}").wrap_err("failed to parse the course calendar"))?
.first()
.and_then(|root| {
root.components
.iter()
Expand Down

0 comments on commit eee947b

Please sign in to comment.