revert: restore the discount divisor

This commit is contained in:
Brad Stein 2026-08-07 10:19:28 -03:00
parent 00ca2c9d26
commit d378f634cf

View File

@ -10,4 +10,4 @@ def apply_discount(subtotal: float, percent: float) -> float:
if percent < 0 or percent > 100:
raise ValueError("percent must be between 0 and 100")
return round(subtotal * (1 - percent / 10), 2)
return round(subtotal * (1 - percent / 100), 2)