1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-04 20:32:36 +01:00

Pylint fixes

Pylint now checks for trailing new lines, this commit fixes them.
This commit is contained in:
Sebastian Goscik
2016-07-21 16:40:26 +01:00
parent 873bdf0bc7
commit 9707aa6237
77 changed files with 2 additions and 100 deletions

View File

@@ -12,5 +12,3 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

View File

@@ -264,4 +264,3 @@ class CpuStatesProcessor(ResultProcessor):
for i, c in enumerate(powerstate_report.core_names)]
writer.writerow(headers)
writer.writerows(powerstate_rows)

View File

@@ -374,4 +374,3 @@ class DVFS(ResultProcessor):
for i in range(self.device.number_of_cores * self.multiply_factor):
temprow.append("{0:.3f}".format(temp["cpu{}".format(i)][offline_value]))
writer.writerow(temprow)

View File

@@ -48,4 +48,3 @@ class StatusTxtReporter(ResultProcessor):
for ir in result.iteration_results]
write_table(status_lines, wfh, align='<<>><')
context.add_artifact('run_status_summary', 'status.txt', 'export')

View File

@@ -146,5 +146,3 @@ class SyegResult(object):
if not match:
raise AttributeError(name)
return self.runs[int(match.group(1)) - 1]