mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
Reordering imports to match style guide.
This commit is contained in:
parent
1503bcaeee
commit
b4c20bdf2e
1 changed files with 4 additions and 4 deletions
|
|
@ -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):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue