Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
goastler committed May 19, 2023
1 parent 69a1b90 commit f7bd385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/captcha/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ pub mod prosopo {
summary.score = 0;
} else {
summary.score =
((summary.correct * 100) / (summary.correct + summary.incorrect)) as u8;
(summary.correct * 100) / (summary.correct + summary.incorrect);
}

Ok(summary)
Expand Down

0 comments on commit f7bd385

Please sign in to comment.