Son NK 5 gadi atpakaļ
vecāks
revīzija
ed76a8ae8d
2 mainītis faili ar 6 papildinājumiem un 4 dzēšanām
  1. 5 4
      app/models.py
  2. 1 0
      email_handler.py

+ 5 - 4
app/models.py

@@ -252,14 +252,15 @@ class User(db.Model, ModelMixin, UserMixin):
 
         manual_sub: ManualSubscription = ManualSubscription.get_by(user_id=self.id)
         # user who has giveaway premium can decide to upgrade
-        if manual_sub and manual_sub.end_at > arrow.now() and not manual_sub.is_giveaway:
+        if (
+            manual_sub
+            and manual_sub.end_at > arrow.now()
+            and not manual_sub.is_giveaway
+        ):
             return False
 
         return True
 
-
-
-
     def next_bill_date(self) -> str:
         sub: Subscription = self.get_subscription()
         if sub:

+ 1 - 0
email_handler.py

@@ -86,6 +86,7 @@ from server import create_app
 # can happen when user "Reply All" on some email clients
 _SELF_FORWARDING_STATUS = "550 SL self-forward"
 
+
 # fix the database connection leak issue
 # use this method instead of create_app
 def new_app():