1
0
Fork 0

Reordering imports to match style guide.

This commit is contained in:
Adam Coddington 2014-08-22 19:25:14 -07:00
parent 1503bcaeee
commit b4c20bdf2e

View file

@ -1,12 +1,12 @@
from imaplib import IMAP4, IMAP4_SSL
import logging import logging
logger = logging.getLogger(__name__) from django.conf import settings
from imaplib import IMAP4, IMAP4_SSL
from .base import EmailTransport, MessageParseError from .base import EmailTransport, MessageParseError
from django.conf import settings
logger = logging.getLogger(__name__)
class ImapTransport(EmailTransport): class ImapTransport(EmailTransport):