flake8 fix: fixed comment style

Fixed:
./num2words/lang_ES.py:366:56: E261 at least two spaces before inline comment
./num2words/lang_ES.py:366:80: E501 line too long (100 > 79 characters)
This commit is contained in:
Gonçal
2022-02-16 18:25:37 +01:00
committed by Marlon Rodriguez Garcia
parent 30f23ccd13
commit b60a58bc85

View File

@@ -363,5 +363,6 @@ class Num2Word_ES(Num2Word_EU):
list_result[0] = list_result[0].replace("uno", "una") list_result[0] = list_result[0].replace("uno", "una")
result = " ".join(list_result) result = " ".join(list_result)
result = result.replace("uno", "un") result = result.replace("uno", "un")
result = result.replace("veintiun", "veintiún") # correct orthography for this specific case # correct orthography for the specific case of "veintiún":
result = result.replace("veintiun", "veintiún")
return result return result