mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-10-30 06:34:13 +00:00
Pylint fixes
Pylint now checks for trailing new lines, this commit fixes them.
This commit is contained in:
@@ -12,5 +12,3 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
|
||||
|
||||
@@ -96,4 +96,3 @@ class RuntimeParametersTest(TestCase):
|
||||
def _instantiate(cls, *args, **kwargs):
|
||||
# Needed to get around Extension's __init__ checks
|
||||
return cls(*args, **kwargs)
|
||||
|
||||
|
||||
@@ -40,5 +40,3 @@ class InterruptDiffTest(TestCase):
|
||||
with open(expected_result_file) as fh:
|
||||
expected_diff = fh.read()
|
||||
assert_equal(output_diff, expected_diff)
|
||||
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -233,4 +233,3 @@ class InstrumentationTest(TestCase):
|
||||
def _instantiate(cls):
|
||||
# Needed to get around Extension's __init__ checks
|
||||
return cls()
|
||||
|
||||
|
||||
@@ -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'])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user