From 569ecbef3071bf7ac63250ff9c4aac651ce23a79 Mon Sep 17 00:00:00 2001 From: Luka Hartwig Date: Sat, 8 Apr 2023 20:03:30 +0200 Subject: [PATCH] Run rustfmt --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 939de01..6cc1548 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 } => {