1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 02:41:11 +01:00

Fixed missing comma in list

This commit is contained in:
Anthony Barbier 2017-06-21 16:41:12 +01:00
parent 0c0ccb10d9
commit e42099851b

View File

@ -121,7 +121,7 @@ class CpuStatesProcessor(ResultProcessor):
:`ignore`: The start marker will be ignored. All events in the trace will be used.
:`error`: An error will be raised if the start marker is not found in the trace.
:`try`: If the start marker is not found, all events in the trace will be used.
""")
"""),
Parameter('no_idle', kind=bool, default=False,
description="""
Indicate that there will be no idle transitions in the trace. By default, a core
@ -135,7 +135,7 @@ class CpuStatesProcessor(ResultProcessor):
If this parameter is set to ``True``, the processor will assuming that cores are
running prior to the begining of the issue, and they will leave unknown state on
the first frequency transition.
"""),
""")
]
def validate(self):