1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-07-09 00:23:35 +01:00

wa: PEP8 Fixes

This commit is contained in:
Marc Bonnici
2018-07-09 17:57:35 +01:00
committed by setrofim
parent 97cf0ac059
commit e8b0d42758
4 changed files with 12 additions and 9 deletions

@ -240,6 +240,7 @@ def create_uiauto_project(path, name):
wfh.write(render_template(os.path.join('uiauto', 'UiAutomation.java'),
{'name': name, 'package_name': package_name}))
# Mapping of workload types to their corresponding creation method
create_funcs = {
'basic': create_template_workload,
@ -266,5 +267,5 @@ def get_class_name(name, postfix=''):
def touch(path):
with open(path, 'w') as _:
with open(path, 'w') as _: # NOQA
pass