Remove redundant imports

This commit is contained in:
Jonas Platte 2021-02-01 19:17:52 +01:00
parent 8fad462d8c
commit 2edddd519e
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ use ruma::{
events::{room::message::MessageEventContent, AnyMessageEventContent},
RoomAliasId,
};
use ruma_client::{self, Client};
use ruma_client::Client;
async fn hello_world(
homeserver_url: Uri,

View File

@ -10,7 +10,7 @@ use ruma::{
},
presence::PresenceState,
};
use ruma_client::{self, Client};
use ruma_client::Client;
use tokio_stream::StreamExt as _;
async fn log_messages(homeserver_url: Uri, username: &str, password: &str) -> anyhow::Result<()> {