1
1
Fork 0

pylint fix
All checks were successful
Actions / Lint Code (Ruff & Pylint) (push) Successful in 11s

This commit is contained in:
Seaswimmer 2024-04-29 19:20:40 -04:00
parent 00d34e7e2f
commit d9b6631b6f
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -20,7 +20,7 @@ def get_discounted_prices(*prices: int) -> float:
if len(prices_set) == 3:
return float(price_sum * 0.75)
elif len(prices_set) == 2:
if len(prices_set) == 2:
return float(price_sum * 0.9)
return float(price_sum)