mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-05-25 09:48:41 +08:00
Correct EmailMultiAlternatives.body (#1146)
This commit is contained in:
@@ -109,7 +109,7 @@ class EmailMultiAlternatives(EmailMessage):
|
|||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
subject: str = ...,
|
subject: str = ...,
|
||||||
body: str = ...,
|
body: Optional[str] = ...,
|
||||||
from_email: Optional[str] = ...,
|
from_email: Optional[str] = ...,
|
||||||
to: Optional[Sequence[str]] = ...,
|
to: Optional[Sequence[str]] = ...,
|
||||||
bcc: Optional[Sequence[str]] = ...,
|
bcc: Optional[Sequence[str]] = ...,
|
||||||
|
|||||||
Reference in New Issue
Block a user