Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lukahartwig committed Apr 8, 2023
1 parent 58d036e commit 569ecbe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ fn main() -> Result<()> {
}

let mut db = Connection::open(path.join("todo.db")).expect("failed to open todo database");
embedded::migrations::runner().run(&mut db).expect("failed to run migrations");
embedded::migrations::runner()
.run(&mut db)
.expect("failed to run migrations");

match app.command {
Commands::Add { message } => {
Expand Down

0 comments on commit 569ecbe

Please sign in to comment.