1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 10:11:17 +00:00

Merge pull request #419 from AnthonyARM/master

Fixed missing comma in list
This commit is contained in:
setrofim 2017-06-21 16:43:35 +01:00 committed by GitHub
commit d391b28d2e

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):