Skip to content

Commit 8cda6c2

Browse files
committed
Remove superflous dict+unpacking syntax
1 parent d78691f commit 8cda6c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/email/mime/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ def __init__(self, _text, _subtype='plain', _charset=None, *, policy=None):
3535
_charset = 'utf-8'
3636

3737
MIMENonMultipart.__init__(self, 'text', _subtype, policy=policy,
38-
**{'charset': str(_charset)})
38+
charset=str(_charset))
3939

4040
self.set_payload(_text, _charset)

0 commit comments

Comments
 (0)