From bc85608926df5845a8165a1adf26cc0d3da685f1 Mon Sep 17 00:00:00 2001 From: Ioan Galan Date: Fri, 7 May 2021 16:42:26 +0200 Subject: [PATCH] [IMP] mail_optional_follower_notification: black, isort, prettier --- mail_optional_follower_notification/models/mail_thread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mail_optional_follower_notification/models/mail_thread.py b/mail_optional_follower_notification/models/mail_thread.py index 1a675f7..d2b70f1 100644 --- a/mail_optional_follower_notification/models/mail_thread.py +++ b/mail_optional_follower_notification/models/mail_thread.py @@ -8,8 +8,8 @@ class MailThread(models.AbstractModel): _inherit = "mail.thread" def _notify_compute_recipients(self, message, msg_vals): - """ Compute recipients to notify based on subtype and followers. This - method returns data structured as expected for ``_notify_recipients``. """ + """Compute recipients to notify based on subtype and followers. This + method returns data structured as expected for ``_notify_recipients``.""" recipient_data = super()._notify_compute_recipients(message, msg_vals) if "notify_followers" in self.env.context and not self.env.context.get( "notify_followers", False