1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

framework/agenda: Calm pylint

This commit is contained in:
Brendan Jackman 2017-12-06 14:55:10 +00:00 committed by marcbonnici
parent 5a373e6c7b
commit 6f59f8eb1b

View File

@ -44,6 +44,7 @@ class AgendaEntry(object):
def __str__(self):
name = self.__class__.__name__.split('.')[-1]
if hasattr(self, 'id'):
# pylint: disable=no-member
return '{}({})'.format(name, self.id)
else:
return name