summaryrefslogtreecommitdiff
path: root/kombu/asynchronous/aws
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/asynchronous/aws')
-rw-r--r--kombu/asynchronous/aws/connection.py5
-rw-r--r--kombu/asynchronous/aws/sqs/connection.py1
2 files changed, 2 insertions, 4 deletions
diff --git a/kombu/asynchronous/aws/connection.py b/kombu/asynchronous/aws/connection.py
index df257be3..c66fd829 100644
--- a/kombu/asynchronous/aws/connection.py
+++ b/kombu/asynchronous/aws/connection.py
@@ -2,15 +2,14 @@
"""Amazon AWS Connection."""
from __future__ import absolute_import, unicode_literals
+import io
+
from vine import promise, transform
from kombu.asynchronous.aws.ext import AWSRequest, get_response
-
from kombu.asynchronous.http import Headers, Request, get_client
from kombu.five import items, python_2_unicode_compatible
-import io
-
try: # pragma: no cover
from email import message_from_bytes
from email.mime.message import MIMEMessage
diff --git a/kombu/asynchronous/aws/sqs/connection.py b/kombu/asynchronous/aws/sqs/connection.py
index e51f0923..9f1b670b 100644
--- a/kombu/asynchronous/aws/sqs/connection.py
+++ b/kombu/asynchronous/aws/sqs/connection.py
@@ -10,7 +10,6 @@ from .ext import boto3
from .message import AsyncMessage
from .queue import AsyncQueue
-
__all__ = ['AsyncSQSConnection']