Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ikvk committed Apr 22, 2020
1 parent 9aa8bc9 commit cc84650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imap_tools/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def payload(self) -> bytes:
if isinstance(multipart_payload, list):
for payload_item in multipart_payload:
if hasattr(payload_item, 'as_bytes'):
payload_item_bytes = payload_item.as_bytes()
payload_item_bytes = payload_item.as_bytes() # noqa
cte = str(self._part.get('content-transfer-encoding', '')).lower().strip()
if payload_item_bytes and cte:
if cte == 'base64':
Expand Down

0 comments on commit cc84650

Please sign in to comment.