Ignore __repr__ in models/request

This commit is contained in:
Jay Newlin (PW) 2018-12-05 11:21:16 -05:00
parent d4727b08fe
commit 558cb425ae

View File

@ -245,7 +245,7 @@ class Request(Base, mixins.TimestampsMixin, mixins.AuditableMixin):
else:
return None
def __repr__(self):
def __repr__(self): #pragma: no cover
return "<Request(status='{}', name='{}', creator='{}', is_approved='{}', time_created='{}', id='{}')>".format(
self.status_displayname,
self.displayname,