1
0
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:
Douglas Raillard
2023-10-05 13:03:02 +01:00
committed by Marc Bonnici
parent 6fe4bce68d
commit f166ac742e
3 changed files with 2 additions and 4 deletions

View File

@@ -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):