Skip to content

Commit

Permalink
Remove unnecessary parentheses.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellen Wang committed Aug 25, 2022
1 parent 632691b commit 27055ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rss2email/feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ def _send_digest(self, digest, sender):
any messages in the digest, don't call this function.
"""
digest['From'] = sender
if (self.digest_type == 'multipart/digest'):
if self.digest_type == 'multipart/digest':
last_part = digest.get_payload()[-1]
last_message = last_part.get_payload()[0]
else:
Expand Down

0 comments on commit 27055ee

Please sign in to comment.