Fixing flake8 E261 errors

This commit is contained in:
Lukasz Langa
2016-12-19 22:09:35 -08:00
parent b84f20a011
commit fe0e3744cc
219 changed files with 4041 additions and 3099 deletions

View File

@@ -8,21 +8,21 @@ class SMTPException(OSError): ...
class SMTPServerDisconnected(SMTPException): ...
class SMTPResponseException(SMTPException):
smtp_code = ... # type: Any
smtp_error = ... # type: Any
args = ... # type: Any
smtp_code = ... # type: Any
smtp_error = ... # type: Any
args = ... # type: Any
def __init__(self, code, msg) -> None: ...
class SMTPSenderRefused(SMTPResponseException):
smtp_code = ... # type: Any
smtp_error = ... # type: Any
sender = ... # type: Any
args = ... # type: Any
smtp_code = ... # type: Any
smtp_error = ... # type: Any
sender = ... # type: Any
args = ... # type: Any
def __init__(self, code, msg, sender) -> None: ...
class SMTPRecipientsRefused(SMTPException):
recipients = ... # type: Any
args = ... # type: Any
recipients = ... # type: Any
args = ... # type: Any
def __init__(self, recipients) -> None: ...
class SMTPDataError(SMTPResponseException): ...
@@ -34,23 +34,23 @@ def quoteaddr(addrstring): ...
def quotedata(data): ...
class SMTP:
debuglevel = ... # type: Any
file = ... # type: Any
helo_resp = ... # type: Any
ehlo_msg = ... # type: Any
ehlo_resp = ... # type: Any
does_esmtp = ... # type: Any
default_port = ... # type: Any
timeout = ... # type: Any
esmtp_features = ... # type: Any
source_address = ... # type: Any
local_hostname = ... # type: Any
debuglevel = ... # type: Any
file = ... # type: Any
helo_resp = ... # type: Any
ehlo_msg = ... # type: Any
ehlo_resp = ... # type: Any
does_esmtp = ... # type: Any
default_port = ... # type: Any
timeout = ... # type: Any
esmtp_features = ... # type: Any
source_address = ... # type: Any
local_hostname = ... # type: Any
def __init__(self, host=..., port=..., local_hostname=..., timeout=...,
source_address=...): ...
def __enter__(self): ...
def __exit__(self, *args): ...
def set_debuglevel(self, debuglevel): ...
sock = ... # type: Any
sock = ... # type: Any
def connect(self, host=..., port=..., source_address=...): ...
def send(self, s): ...
def putcmd(self, cmd, args=...): ...
@@ -66,7 +66,7 @@ class SMTP:
def rcpt(self, recip, options=...): ...
def data(self, msg): ...
def verify(self, address): ...
vrfy = ... # type: Any
vrfy = ... # type: Any
def expn(self, address): ...
def ehlo_or_helo_if_needed(self): ...
def login(self, user, password): ...
@@ -79,16 +79,16 @@ class SMTP:
def quit(self): ...
class SMTP_SSL(SMTP):
default_port = ... # type: Any
keyfile = ... # type: Any
certfile = ... # type: Any
context = ... # type: Any
default_port = ... # type: Any
keyfile = ... # type: Any
certfile = ... # type: Any
context = ... # type: Any
def __init__(self, host=..., port=..., local_hostname=..., keyfile=..., certfile=...,
timeout=..., source_address=..., context=...): ...
class LMTP(SMTP):
ehlo_msg = ... # type: Any
ehlo_msg = ... # type: Any
def __init__(self, host=..., port=..., local_hostname=..., source_address=...) -> None: ...
sock = ... # type: Any
file = ... # type: Any
sock = ... # type: Any
file = ... # type: Any
def connect(self, host=..., port=..., source_address=...): ...