From 2078af59d8b2a95fbaf522962265c222d3f17b1b Mon Sep 17 00:00:00 2001
From: hamidreza kalbasi <hamidrezakalbasi@protonmail.com>
Date: Tue, 8 Jun 2021 20:54:36 +0430
Subject: [PATCH] fix fmt problems

---
 src/database.rs | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/database.rs b/src/database.rs
index fa84881d9..b5a25eac1 100644
--- a/src/database.rs
+++ b/src/database.rs
@@ -20,7 +20,12 @@
 use rocket::futures::{channel::mpsc, stream::FuturesUnordered, StreamExt};
 use ruma::{DeviceId, ServerName, UserId};
 use serde::Deserialize;
-use std::{collections::HashMap, fs::{self, remove_dir_all}, io::Write, sync::{Arc, RwLock}};
+use std::{
+    collections::HashMap,
+    fs::{self, remove_dir_all},
+    io::Write,
+    sync::{Arc, RwLock},
+};
 use tokio::sync::Semaphore;
 
 #[derive(Clone, Debug, Deserialize)]
-- 
GitLab