Ignore __repr__ in models/audit_event

This commit is contained in:
Jay Newlin (PW) 2018-12-05 10:48:48 -05:00
parent 4346380179
commit 0065ba83d1

View File

@ -33,7 +33,7 @@ class AuditEvent(Base, TimestampsMixin):
connection.execute(self.__table__.insert(), **attrs)
def __repr__(self):
def __repr__(self): # pragma: no cover
return "<AuditEvent(name='{}', action='{}', id='{}')>".format(
self.display_name, self.action, self.id
)