Remove dupplicated line in lang_PT_BR

Remove an unnecessary condition, since the very same action follows it.
This commit is contained in:
Israel Teixeira
2020-12-22 07:43:10 -03:00
committed by Willem Van Onsem
parent 47a3cac323
commit 8db643a918

View File

@@ -53,8 +53,6 @@ class Num2Word_PT_BR(lang_PT.Num2Word_PT):
ctext = "cento"
if nnum < cnum:
if cnum < 100:
return ("%s e %s" % (ctext, ntext), cnum + nnum)
return ("%s e %s" % (ctext, ntext), cnum + nnum)
elif (not nnum % 1000000) and cnum > 1: