From d607e15bd303ca5a03ef5abf828f92ee4c670f30 Mon Sep 17 00:00:00 2001 From: houssine Date: Tue, 12 Feb 2019 18:06:33 +0100 Subject: [PATCH] [PEP8] remove space at end of line --- easy_my_coop/models/coop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easy_my_coop/models/coop.py b/easy_my_coop/models/coop.py index 5d63fdc..e944b55 100644 --- a/easy_my_coop/models/coop.py +++ b/easy_my_coop/models/coop.py @@ -270,7 +270,7 @@ class subscription_request(models.Model): def send_capital_release_request(self, invoice): invoice_email_template = self.env['mail.template'].search([('name', '=', 'Request to Release Capital - Send by Email')])[0] - # we send the email with the capital release request in attachment + # we send the email with the capital release request in attachment invoice_email_template.send_mail(invoice.id, True) invoice.sent = True @@ -278,7 +278,7 @@ class subscription_request(models.Model): # get subscription journal journal = self.env['account.journal'].search([('code', '=', 'SUBJ')])[0] # get the account for associate - # TODO this should be defined in configuration + # TODO this should be defined in configuration if self.company_id.property_cooperator_account: account = self.company_id.property_cooperator_account else: