mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 14:52:25 +00:00
Use non-url-encoded source URL to avoid CI rejection for too-long line
This commit is contained in:
committed by
Ernesto Rodriguez Ortiz
parent
28c304c2f4
commit
c1e3e854bb
@@ -129,7 +129,7 @@ def int2word(n):
|
|||||||
if i > 0:
|
if i > 0:
|
||||||
words.append(THOUSANDS[i][0])
|
words.append(THOUSANDS[i][0])
|
||||||
|
|
||||||
# source: https://hebrew-academy.org.il/2017/01/30/%d7%95-%d7%94%d7%97%d7%99%d7%91%d7%95%d7%a8-%d7%91%d7%9e%d7%a1%d7%a4%d7%a8%d7%99%d7%9d/
|
# source: https://hebrew-academy.org.il/2017/01/30/ו-החיבור-במספרים/
|
||||||
if len(words) > 1:
|
if len(words) > 1:
|
||||||
words[-1] = AND + words[-1]
|
words[-1] = AND + words[-1]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user