scripts: Fix twisterlib for ruff - UP004
This fixes ruff linting error UP004, where a redundant `object` inheritance is present. Signed-off-by: Lukasz Mrugala <lukaszx.mrugala@intel.com>
This commit is contained in:
parent
c273419864
commit
52cd7d673f
4 changed files with 3 additions and 8 deletions
|
@ -59,7 +59,7 @@ logger = logging.getLogger('twister')
|
|||
logger.setLevel(logging.DEBUG)
|
||||
|
||||
|
||||
class ExecutionCounter(object):
|
||||
class ExecutionCounter:
|
||||
def __init__(self, total=0):
|
||||
'''
|
||||
Most of the stats are at test instance level
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue