Skip to content

Commit

Permalink
Remove unrequired fn call
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Jan 23, 2022
1 parent 4339dc8 commit 6d428e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/substrate-differ/src/call_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ impl<'a, K: Display, V: Display + 'a> Display for CallWrapper<'a, K, V> {
for key in keys {
res.push_str(&format!("{}.", key));
}
write!(f, "🗑 {:<50} {:>20}", res, val.to_string())
write!(f, "🗑 {:<50} {:>20}", res, val)
}

ChangeType::Unchanged(_, _) => write!(f, "Unchanged"),
Expand Down

0 comments on commit 6d428e8

Please sign in to comment.