Skip to content

Commit

Permalink
Lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
rhgndf committed Oct 16, 2024
1 parent 6c47511 commit 00e16aa
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/builder/edit_channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use super::CreateForumTag;
use crate::http::CacheHttp;
#[cfg(feature = "http")]
use crate::internal::prelude::*;
use crate::json::*;
use crate::model::prelude::*;

/// A builder to edit a [`GuildChannel`] for use via [`GuildChannel::edit`].
Expand Down Expand Up @@ -345,7 +344,13 @@ impl<'a> Builder for EditChannel<'a> {

cache_http
.http()
.edit_voice_status(ctx, &EditVoiceStatusBody { status: status.as_str() }, self.audit_log_reason)
.edit_voice_status(
ctx,
&EditVoiceStatusBody {
status: status.as_str(),
},
self.audit_log_reason,
)
.await?;
}

Expand Down

0 comments on commit 00e16aa

Please sign in to comment.