Skip to content

Commit 1473f89

Browse files
authored
fix: clippy (#50)
1 parent 4ee9007 commit 1473f89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cargo:
2929
- name: "Clippy"
3030
cmd: clippy
31-
args: --workspace --all-features --tests -- -D clippy::all -W clippy::style
31+
args: --workspace --all-features --tests -- -D warnings
3232
rust: stable
3333
- name: "Formatting"
3434
cmd: fmt

relay_rpc/src/auth/cacao.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ impl Cacao {
9696
);
9797

9898
if let Some(statement) = &self.p.statement {
99-
write!(message, "{}\n", statement)?;
99+
writeln!(message, "{}", statement)?;
100100
}
101101

102102
write!(

0 commit comments

Comments
 (0)