1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-03 11:52:36 +01:00

wa/workloads: pylint fixes

This commit is contained in:
Marc Bonnici
2018-07-03 13:54:52 +01:00
parent 6e94cbd36b
commit 9b2bc1369c
13 changed files with 14 additions and 16 deletions

View File

@@ -19,9 +19,11 @@ import re
import os
import time
#pylint: disable=wrong-import-position
from future.standard_library import install_aliases
install_aliases()
#pylint: disable=import-error, wrong-import-order
import urllib.request
import urllib.parse
import urllib.error
@@ -111,6 +113,7 @@ class ExoPlayer(ApkWorkload):
"""),
]
#pylint: disable=access-member-before-definition
def validate(self):
if self.format and self.filename:
raise ConfigError('Either format *or* filename must be specified; but not both.')
@@ -153,7 +156,7 @@ class ExoPlayer(ApkWorkload):
'"format" to specify a different file.')
return files[0]
def init_resources(self, context):
def init_resources(self, context): #pylint: disable=unused-argument
# Needs to happen first, as it sets self.format, which is required by
# _find_host_video_file
self.validate()