From efb5df497a6ee188099a1e2c987b6f1639080f8a Mon Sep 17 00:00:00 2001 From: Carlos Almeida Date: Fri, 15 Jan 2016 07:26:38 -0200 Subject: [PATCH] test_flake8 fixes --- web_fetchmail_no_followers/model/mail_thread.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web_fetchmail_no_followers/model/mail_thread.py b/web_fetchmail_no_followers/model/mail_thread.py index 1794546b..9ab37f7b 100644 --- a/web_fetchmail_no_followers/model/mail_thread.py +++ b/web_fetchmail_no_followers/model/mail_thread.py @@ -30,9 +30,9 @@ message_post_super = mail_thread.message_post @api.cr_uid_ids_context def MailNoFollowersMessagePost(self, cr, uid, thread_id, body='', subject=None, - type='notification', subtype=None, parent_id=False, - attachments=None, context=None, content_subtype='html', - **kwargs): + type='notification', subtype=None, + parent_id=False, attachments=None, context=None, + content_subtype='html', **kwargs): nosub_ctx = dict(context, mail_create_nosubscribe=True, mail_create_nolog=True) @@ -49,7 +49,7 @@ class MailNoFollowers(models.Model): ''' I define this class so this code will be executed only if module is installed in database. Otherwise it will be always executed. Odoo call __init__ once on install and once on uninstall. - This way we switch to standard method without a server restart. + This way we switch to standard method without a server restart. ''' _name = 'mail.thread'