Fix ServiceWhiteList __repr__

Apparently this code was unreachable.
This commit is contained in:
Paul Craig
2016-11-25 16:58:46 +00:00
parent ffb813bb3f
commit 268e19bb76

View File

@@ -179,8 +179,7 @@ class ServiceWhitelist(db.Model):
return instance
def __repr__(self):
return 'Recipient {} of type: {}'.format(self.recipient,
self.recipient_type)
return 'Recipient {} of type: {}'.format(self.recipient, self.recipient_type)
class ApiKey(db.Model, Versioned):