From c28872288b30b21aa2cde1d9a9c4faa4a9fbfe19 Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Tue, 24 Nov 2020 11:28:14 +0100 Subject: [PATCH] black --- email_handler.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/email_handler.py b/email_handler.py index 1ab113bb..aa8d4f27 100644 --- a/email_handler.py +++ b/email_handler.py @@ -662,11 +662,7 @@ def forward_email_to_mailbox( ) # create PGP email if needed - if ( - mailbox.pgp_enabled() - and user.is_premium() - and not alias.disable_pgp - ): + if mailbox.pgp_enabled() and user.is_premium() and not alias.disable_pgp: LOG.d("Encrypt message using mailbox %s", mailbox) if mailbox.generic_subject: LOG.d("Use a generic subject for %s", mailbox)