From 319597ae30289021a1f9786b1c1b4e9195f1e853 Mon Sep 17 00:00:00 2001 From: Bastian Gruber Date: Sun, 30 Apr 2023 21:43:00 +0200 Subject: [PATCH] cargo fmt --- problem_03/src/db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problem_03/src/db.rs b/problem_03/src/db.rs index 4f587ff..76fe96e 100644 --- a/problem_03/src/db.rs +++ b/problem_03/src/db.rs @@ -1,7 +1,7 @@ use std::sync::Arc; use tokio::sync::RwLock; -use tracing::{debug, info}; +use tracing::info; use crate::Result;