Skip to content

Commit

Permalink
fix imports solana-labs#2
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-schaaf committed Jan 16, 2022
1 parent 13459ac commit e6403e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli-output/src/cli_output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1644,7 +1644,7 @@ impl fmt::Display for CliSignOnlyDatas {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
writeln!(f)?;
for data in &self.cli_sign_only_datas {
Display::fmt(data, f)?;
fmt::Display::fmt(data, f)?;
}
Ok(())
}
Expand Down Expand Up @@ -1697,7 +1697,7 @@ impl fmt::Display for CliSignatures {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
writeln!(f)?;
for signature in &self.cli_signatures {
Display::fmt(signature, f)?;
fmt::Display::fmt(signature, f)?;
}
Ok(())
}
Expand Down

0 comments on commit e6403e2

Please sign in to comment.