From d9b6631b6f72358cb8af052c76021aca70525691 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 29 Apr 2024 19:20:40 -0400 Subject: [PATCH] pylint fix --- online_store/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)