PEP8 cleanups

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-04-16 00:14:07 -04:00
parent 2f5a0d071f
commit b3da28e915
2 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ def get_language_choices():
return sorted(
[
(
iso639_3, _(pycountry.languages.get(alpha_3=iso639_3).name)
iso639_3, _(pycountry.languages.get(alpha_3=iso639_3).name)
) for iso639_3 in setting_language_codes.value
], key=lambda x: x[1]
)