diff --git a/online_store/main.py b/online_store/main.py index 54ddf70..cc7dc40 100644 --- a/online_store/main.py +++ b/online_store/main.py @@ -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)