mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-03 03:42:35 +01:00
utils/misc: Fix linters violation
A mix of pylint and PEP8 violations that GitHub action enforces.
This commit is contained in:
committed by
Marc Bonnici
parent
6fe4bce68d
commit
f166ac742e
@@ -289,7 +289,7 @@ def get_article(word):
|
||||
in all case; e.g. this will return ``"a hour"``.
|
||||
|
||||
"""
|
||||
return'an' if word[0] in 'aoeiu' else 'a'
|
||||
return 'an' if word[0] in 'aoeiu' else 'a'
|
||||
|
||||
|
||||
def get_random_string(length):
|
||||
|
Reference in New Issue
Block a user