mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-05-24 09:18:41 +08:00
add fail_silently attribute for BaseEmailBackend instances (#931)
Signed-off-by: Oleg Hoefling <oleg.hoefling@ionos.com>
This commit is contained in:
@@ -6,6 +6,7 @@ from django.core.mail.message import EmailMessage
|
|||||||
_T = TypeVar("_T", bound="BaseEmailBackend")
|
_T = TypeVar("_T", bound="BaseEmailBackend")
|
||||||
|
|
||||||
class BaseEmailBackend:
|
class BaseEmailBackend:
|
||||||
|
fail_silently: bool
|
||||||
def __init__(self, fail_silently: bool = ..., **kwargs: Any) -> None: ...
|
def __init__(self, fail_silently: bool = ..., **kwargs: Any) -> None: ...
|
||||||
def open(self) -> Optional[bool]: ...
|
def open(self) -> Optional[bool]: ...
|
||||||
def close(self) -> None: ...
|
def close(self) -> None: ...
|
||||||
|
|||||||
Reference in New Issue
Block a user