Skip to content

Commit

Permalink
Addressed clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
miloszm committed Nov 21, 2023
1 parent 605a560 commit 8d6b11f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moat-cli-lp/src/interactor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl Interactor {
println!("{}", run_result);
}
Err(error) => {
println!("{}", error.to_string());
println!("{}", error);
}
}
continue;
Expand Down
2 changes: 1 addition & 1 deletion moat-cli-user/src/interactor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl Interactor {
println!("{}", run_result);
}
Err(error) => {
println!("{}", error.to_string());
println!("{}", error);
}
}
continue;
Expand Down

0 comments on commit 8d6b11f

Please sign in to comment.