diff --git a/account_bank_statement_import_auto_reconcile/models/account_bank_statement_import_auto_reconcile_exact_amount.py b/account_bank_statement_import_auto_reconcile/models/account_bank_statement_import_auto_reconcile_exact_amount.py index 4aa311b..e86d10f 100644 --- a/account_bank_statement_import_auto_reconcile/models/account_bank_statement_import_auto_reconcile_exact_amount.py +++ b/account_bank_statement_import_auto_reconcile/models/account_bank_statement_import_auto_reconcile_exact_amount.py @@ -47,6 +47,6 @@ class AccountBankStatementImportAutoReconcileExactAmount(models.AbstractModel): (amount_field, '=', self._round(sign * statement_line.amount)), ] move_lines = self.env['account.move.line'].search(domain, limit=2) - if move_lines and len(move_lines)==1: + if move_lines and len(move_lines) == 1: self._reconcile_move_line(statement_line, move_lines.id) return True