Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
DyrellC committed May 26, 2022
1 parent 1761123 commit a6f9914
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions streams/src/api/user_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,11 @@ impl<T> UserBuilder<T> {
{
// Separated as a method instead of defaulting at the build method to avoid requiring the bespoke
// bound T: DefaultTransport for all transports
Ok(
UserBuilder {
transport: Some(NewTransport::try_default().await?),
id: self.id,
psks: self.psks,
}
)
Ok(UserBuilder {
transport: Some(NewTransport::try_default().await?),
id: self.id,
psks: self.psks,
})
}

/// Inject a new Pre Shared Key and Id into the User Builder
Expand Down

0 comments on commit a6f9914

Please sign in to comment.