PEP8 on account_bank_statement_tax

This commit is contained in:
Sandy Carter
2014-08-25 17:19:13 -04:00
parent 596304f48f
commit c978f11306
2 changed files with 19 additions and 11 deletions

View File

@@ -28,7 +28,7 @@ class AccountBankStatementLine(orm.Model):
_columns = {
'tax_id': fields.many2one(
'account.tax', 'Tax',
domain=[('price_include','=', True)],
domain=[('price_include', '=', True)],
help="Apply an (inclusive) tax from the bank statement line",
),
}