mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
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:
committed by
Marlon Rodriguez Garcia
parent
30f23ccd13
commit
b60a58bc85
@@ -363,5 +363,6 @@ class Num2Word_ES(Num2Word_EU):
|
||||
list_result[0] = list_result[0].replace("uno", "una")
|
||||
result = " ".join(list_result)
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user