Skip to content

Commit

Permalink
fix: clippy (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 authored Nov 30, 2023
1 parent 4ee9007 commit 1473f89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cargo:
- name: "Clippy"
cmd: clippy
args: --workspace --all-features --tests -- -D clippy::all -W clippy::style
args: --workspace --all-features --tests -- -D warnings
rust: stable
- name: "Formatting"
cmd: fmt
Expand Down
2 changes: 1 addition & 1 deletion relay_rpc/src/auth/cacao.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl Cacao {
);

if let Some(statement) = &self.p.statement {
write!(message, "{}\n", statement)?;
writeln!(message, "{}", statement)?;
}

write!(
Expand Down

0 comments on commit 1473f89

Please sign in to comment.