Skip to content

Commit 7d1bb7e

Browse files
committed
email.parser: Kw-only args are not supported yet by MicroPython.
1 parent 23cdbae commit 7d1bb7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

email.parser/email/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
class Parser:
19-
def __init__(self, _class=Message, *, policy=compat32):
19+
def __init__(self, _class=Message, policy=compat32):
2020
"""Parser of RFC 2822 and MIME email messages.
2121
2222
Creates an in-memory object tree representing the email message, which

0 commit comments

Comments
 (0)