From 218eef21eea85d36b21a921dcf3e62efe9eeb888 Mon Sep 17 00:00:00 2001 From: Jez Cope Date: Sat, 3 Jul 2021 15:26:59 +0100 Subject: [PATCH] cargo fmt --- src/commands.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index 242f3c1..7da8031 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -10,7 +10,11 @@ use crate::util::{build_client_config, restore_session, save_session}; type CommandResult = Result<(), Box>; -macro_rules! room_fmt {() => {"{:30.30} | {:30.30} | {}"};} +macro_rules! room_fmt { + () => { + "{:30.30} | {:30.30} | {}" + }; +} pub async fn login(username: Option<&str>) -> CommandResult { let user_id = match username {