mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
Fix some pep8 issues
W291: pycodestyle-3.6 num2words | grep W291 num2words/lang_NL.py:64:40: W291 trailing whitespace num2words/lang_NL.py:97:38: W291 trailing whitespace Signed-off-by: William Moreno Reyes <williamjmorenor@gmail.com>
This commit is contained in:
@@ -61,7 +61,7 @@ class Num2Word_NL(Num2Word_EU):
|
||||
"vier": "vierd",
|
||||
"vijf": "vijfd",
|
||||
"zes": "zesd",
|
||||
"zeven": "zevend",
|
||||
"zeven": "zevend",
|
||||
"acht": "achtst",
|
||||
"negen": "negend",
|
||||
"tien":"tiend",
|
||||
@@ -94,7 +94,7 @@ class Num2Word_NL(Num2Word_EU):
|
||||
if ntext.endswith("e"):
|
||||
ntext += "ën"#"n"
|
||||
else:
|
||||
ntext += "en"
|
||||
ntext += "en"
|
||||
ntext, ctext = ctext, ntext #+ "en"
|
||||
elif cnum >= 10**6:
|
||||
ctext += " "
|
||||
|
||||
Reference in New Issue
Block a user