clippy add comma

This commit is contained in:
doryan 2025-04-03 12:16:48 +04:00
parent 59222bc4c6
commit 0ac01fa865
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ pub async fn ban_member(
let user_id: i64 = match user.get_id() { let user_id: i64 = match user.get_id() {
Some(id) => id, Some(id) => id,
None => return Ok(EventReturn::Skip) None => return Ok(EventReturn::Skip),
}; };
let callback = || async { bot.send(BanChatMember::new(chat_id, user_id)).await }; let callback = || async { bot.send(BanChatMember::new(chat_id, user_id)).await };

View File

@ -27,7 +27,7 @@ pub async fn mute_member(
let user_id: i64 = match user.get_id() { let user_id: i64 = match user.get_id() {
Some(id) => id, Some(id) => id,
None => return Ok(EventReturn::Skip) None => return Ok(EventReturn::Skip),
}; };
sleep(Duration::from_millis(time.1)).await; sleep(Duration::from_millis(time.1)).await;