diff options
| author | Ubuntu <github@matdoes.dev> | 2022-08-30 19:56:14 +0000 |
|---|---|---|
| committer | Ubuntu <github@matdoes.dev> | 2022-08-30 19:56:14 +0000 |
| commit | a6c5017e387954342a65358347cf89deead68944 (patch) | |
| tree | a1d92d6bb9da42262a2b64cd8e390c8c6e6cbbed /bot | |
| parent | 5f0fe9f29ed8f56c4a62ff89605623b74d8ec87b (diff) | |
| download | azalea-drasl-a6c5017e387954342a65358347cf89deead68944.tar.xz | |
clippy
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/main.rs b/bot/src/main.rs index bad00b57..0b49f30b 100644 --- a/bot/src/main.rs +++ b/bot/src/main.rs @@ -15,7 +15,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { // println!("{}", response.description.to_ansi(None)); let account = Account::offline("bot"); - let (mut client, mut rx) = account.join(&address.try_into().unwrap()).await.unwrap(); + let (client, mut rx) = account.join(&address.try_into().unwrap()).await.unwrap(); println!("connected"); while let Some(e) = &rx.recv().await { |
