Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
frdomovic committed Dec 20, 2024
1 parent edb97e4 commit 6c69815
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/context/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,8 @@ impl ContextManager {
context_id.rt().expect("infallible conversion"),
signer_id.rt().expect("infallible conversion"),
)
.await?.ok_or_eyre("Not a member")?;
.await?
.ok_or_eyre("Not a member")?;

let _ = self
.config_client
Expand Down

0 comments on commit 6c69815

Please sign in to comment.