remove 6.5 tier
This commit is contained in:
parent
b77be4c250
commit
7eb8136cd4
1 changed files with 5 additions and 5 deletions
|
|
@ -415,14 +415,14 @@ class EstimationService:
|
||||||
def get_tier(self, coverage: int, rx_spend: float) -> tuple[Tier | None, str | None]:
|
def get_tier(self, coverage: int, rx_spend: float) -> tuple[Tier | None, str | None]:
|
||||||
tiers = [
|
tiers = [
|
||||||
Tier.TIER_1, Tier.TIER_15, Tier.TIER_2, Tier.TIER_25, Tier.TIER_3, Tier.TIER_35,
|
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 = {
|
rates = {
|
||||||
1: [122, 127, 133, 139, 145, 151, 158, 164, 172, 182, 196, 209, 222],
|
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, 417, 444],
|
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, 376, 400],
|
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, 626, 666]
|
4: [365, 379, 397, 415, 435, 452, 472, 491, 514, 545, 585, 666],
|
||||||
}
|
}
|
||||||
|
|
||||||
if coverage not in rates:
|
if coverage not in rates:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue