Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Sep 18, 2024
1 parent 8f89a19 commit 6f9bd61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slot/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pub struct GraphQLErrors(Vec<graphql_client::Error>);
impl fmt::Display for GraphQLErrors {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for err in &self.0 {
writeln!(f, "Error: {}\n", err.message)?;
writeln!(f, "Error: {}", err.message)?;
}
Ok(())
}
Expand Down

0 comments on commit 6f9bd61

Please sign in to comment.