Skip to content

Commit

Permalink
[FIX] fixed pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcoapu committed Oct 23, 2023
1 parent 4916c98 commit 6cb4fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_it_fatturapa_out/wizard/wizard_export_fatturapa.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def _key(tax_id):
tax_line_id = tax_id.tax_line_id
aliquota = format_numbers(tax_line_id.amount)
key = _key(tax_line_id)
if invoice.move_type == 'out_invoice':
if invoice.move_type == "out_invoice":
if tax_id.credit == 0.0 and tax_id.debit:
tax_amount = -tax_id.balance

Check warning on line 141 in l10n_it_fatturapa_out/wizard/wizard_export_fatturapa.py

View check run for this annotation

Codecov / codecov/patch

l10n_it_fatturapa_out/wizard/wizard_export_fatturapa.py#L141

Added line #L141 was not covered by tests
if tax_id.credit and tax_id.debit == 0.0:
Expand Down

0 comments on commit 6cb4fdd

Please sign in to comment.