From 7eb8136cd4239ab098fa2aa745716ffce2845ee0 Mon Sep 17 00:00:00 2001 From: ipu Date: Wed, 1 Oct 2025 17:29:49 +0300 Subject: [PATCH] remove 6.5 tier --- src/services/estimation_service_v2.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/services/estimation_service_v2.py b/src/services/estimation_service_v2.py index 6d920a0..553c85f 100644 --- a/src/services/estimation_service_v2.py +++ b/src/services/estimation_service_v2.py @@ -415,14 +415,14 @@ class EstimationService: def get_tier(self, coverage: int, rx_spend: float) -> tuple[Tier | None, str | None]: tiers = [ Tier.TIER_1, Tier.TIER_15, Tier.TIER_2, Tier.TIER_25, Tier.TIER_3, Tier.TIER_35, - Tier.TIER_4, Tier.TIER_45, Tier.TIER_5, Tier.TIER_55, Tier.TIER_6, Tier.TIER_65, Tier.TIER_7 + Tier.TIER_4, Tier.TIER_45, Tier.TIER_5, Tier.TIER_55, Tier.TIER_6, Tier.TIER_7 ] rates = { - 1: [122, 127, 133, 139, 145, 151, 158, 164, 172, 182, 196, 209, 222], - 2: [243, 253, 265, 277, 290, 302, 315, 327, 343, 364, 390, 417, 444], - 3: [219, 228, 239, 249, 261, 272, 283, 295, 309, 327, 351, 376, 400], - 4: [365, 379, 397, 415, 435, 452, 472, 491, 514, 545, 585, 626, 666] + 1: [122, 127, 133, 139, 145, 151, 158, 164, 172, 182, 196, 222], + 2: [243, 253, 265, 277, 290, 302, 315, 327, 343, 364, 390, 444], + 3: [219, 228, 239, 249, 261, 272, 283, 295, 309, 327, 351, 400], + 4: [365, 379, 397, 415, 435, 452, 472, 491, 514, 545, 585, 666], } if coverage not in rates: