1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-10-29 22:24:51 +00: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

@@ -96,4 +96,3 @@ class RuntimeParametersTest(TestCase):
def _instantiate(cls, *args, **kwargs):
# Needed to get around Extension's __init__ checks
return cls(*args, **kwargs)

View File

@@ -40,5 +40,3 @@ class InterruptDiffTest(TestCase):
with open(expected_result_file) as fh:
expected_diff = fh.read()
assert_equal(output_diff, expected_diff)

View File

@@ -48,4 +48,3 @@ class ExtensionLoaderTest(TestCase):
assert_equal(len(devices), 1)
assert_equal(devices[0].name, 'test-device')
assert_equal(len(loader.list_extensions()), 1)

View File

@@ -233,4 +233,3 @@ class InstrumentationTest(TestCase):
def _instantiate(cls):
# Needed to get around Extension's __init__ checks
return cls()

View File

@@ -88,4 +88,3 @@ class TestTypes(TestCase):
assert_equal(arguments('--foo 7 --bar "fizz buzz"'),
['--foo', '7', '--bar', 'fizz buzz'])
assert_equal(arguments(['test', 42]), ['test', '42'])