From 9a1f4f69dda9851af73e4bf6d85857d5fbce1e62 Mon Sep 17 00:00:00 2001 From: Paul Lecuq Date: Mon, 15 May 2023 13:24:55 +0200 Subject: [PATCH] commented unused function --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index a746e14..3b754ca 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -33,7 +33,7 @@ pub fn _dedup(list: &mut Vec) -> usize { list.len() } -pub async fn sleep_ms(ms: u64) { +pub async fn _sleep_ms(ms: u64) { sleep(Duration::from_millis(ms)).await; }