From ede3f1ccb870daeed9dd9f6b86d795fbdb666d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Schenkels?= Date: Tue, 30 May 2017 14:25:35 +0200 Subject: [PATCH] [FIX] flake8 error --- ...account_bank_statement_import_auto_reconcile_exact_amount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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