1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-19 04:21:17 +00: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. :`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. :`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. :`try`: If the start marker is not found, all events in the trace will be used.
""") """),
Parameter('no_idle', kind=bool, default=False, Parameter('no_idle', kind=bool, default=False,
description=""" description="""
Indicate that there will be no idle transitions in the trace. By default, a core 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 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 running prior to the begining of the issue, and they will leave unknown state on
the first frequency transition. the first frequency transition.
"""), """)
] ]
def validate(self): def validate(self):