remove "at least"

pull/150/head
Aevann 2023-05-15 01:35:24 +03:00
parent 7251442a9d
commit ca7db123b2
1 changed files with 1 additions and 1 deletions

View File

@ -1004,7 +1004,7 @@ class User(Base):
def patron_tooltip(self): def patron_tooltip(self):
tier_name = TIER_TO_NAME[self.patron] tier_name = TIER_TO_NAME[self.patron]
tier_money = TIER_TO_MONEY[self.patron] tier_money = TIER_TO_MONEY[self.patron]
return f'{tier_name} - Donates at least ${tier_money}/month' return f'{tier_name} - Donates ${tier_money}/month'
@classmethod @classmethod
def can_see_content(cls, user:Optional["User"], other:Union[Submission, Comment, Sub]) -> bool: def can_see_content(cls, user:Optional["User"], other:Union[Submission, Comment, Sub]) -> bool: