Closed unpeturbed closed 1 month ago
Did you push it -f
?
If yes, please pull all the changes first then refactor it and raise a pr again.
Did you push it
-f
?If yes, please pull all the changes first then refactor it and raise a pr again.
Not sure I get what you mean
While you are pushing code did you use the -f(means with force command)?
Because I made some changes to this repo, I hope you did not pull the changes.
Before pulling you pushed your code to the main branch and it failed then you again did it with force(-f).
If yes, please pull the changes first then raise the pr again. Because it rewrites the history.
While you are pushing code did you use the -f(means with force command)?
Because I made some changes to this repo, I hope you did not pull the changes.
Before pulling you pushed your code to the main branch and it failed then you again did it with force(-f).
If yes, please pull the changes first then raise the pr again. Because it rewrites the history.
I get you. now, i didn't force push. I'll try to rectify here anyway
This pull request changes the data type for grades from
u32
tof32
to allow for greater precision, particularly when working with fractional grade values.Reason: The current implementation uses
u32
for grades, which restricts the precision to whole numbers. To support fractional grades and improve accuracy in calculations,f32
is more appropriate.Changes Made:
src/main.rs
f32
.