From bf4ff517890cad3ff4e36b4b78959504192e5374 Mon Sep 17 00:00:00 2001 From: mat Date: Wed, 1 Mar 2023 21:08:03 +0000 Subject: [PATCH] remove a ? --- azalea/examples/testbot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea/examples/testbot.rs b/azalea/examples/testbot.rs index 81e4148b..dd1629ae 100644 --- a/azalea/examples/testbot.rs +++ b/azalea/examples/testbot.rs @@ -172,7 +172,7 @@ async fn swarm_handle( tokio::time::sleep(Duration::from_secs(5)).await; swarm .add_with_exponential_backoff(account, State::default()) - .await?; + .await; } SwarmEvent::Chat(m) => { println!("swarm chat message: {}", m.message().to_ansi());