Skip to content

Commit

Permalink
fix: run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Dec 1, 2024
1 parent 10f8c0e commit 3abf88c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ fn main() {
AppArguments::Time { day, all, store } => time::handle(day, all, store),
AppArguments::Download { day } => download::handle(day),
AppArguments::Read { day } => read::handle(day),
AppArguments::Scaffold { day, download, overwrite } => {
AppArguments::Scaffold {
day,
download,
overwrite,
} => {
scaffold::handle(day, overwrite);
if download {
download::handle(day);
Expand Down

0 comments on commit 3abf88c

Please sign in to comment.