Skip to content

Commit

Permalink
updated test requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
satcfdi committed Apr 10, 2024
1 parent 232ffa2 commit 644f6b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satcfdi/accounting/contabilidad.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def sign(cta):
def validate_saldos(cuentas):
totales = {}
for k, v in cuentas.items():
sub_cta = v.get('SubCtaDe') or ''
sub_cta = v.get('SubCtaDe')
totales.setdefault(sub_cta, 0)
totales[sub_cta] += v['SaldoFin'] * sign(v)

Expand Down

0 comments on commit 644f6b2

Please sign in to comment.