From aaedd4d054f5224edcdec4e2b2504f5445963ec6 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Thu, 3 Mar 2016 12:19:56 +0000 Subject: [PATCH] Removed unused notifcation status --- app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models.py b/app/models.py index 836938945..c2bbf4765 100644 --- a/app/models.py +++ b/app/models.py @@ -207,7 +207,7 @@ class VerifyCode(db.Model): return check_hash(cde, self._code) -NOTIFICATION_STATUS_TYPES = ['sent', 'failed', 'failed - restricted service'] +NOTIFICATION_STATUS_TYPES = ['sent', 'failed'] class Notification(db.Model):