diff --git a/kombu/asynchronous/aws/connection.py b/kombu/asynchronous/aws/connection.py index 48da15c96..2dd9c3505 100644 --- a/kombu/asynchronous/aws/connection.py +++ b/kombu/asynchronous/aws/connection.py @@ -7,7 +7,7 @@ from vine import promise, transform -from kombu.asynchronous.aws.ext import AWSRequest, get_response, get_cert_path +from kombu.asynchronous.aws.ext import AWSRequest, get_cert_path, get_response from kombu.asynchronous.http import Headers, Request, get_client diff --git a/kombu/asynchronous/aws/ext.py b/kombu/asynchronous/aws/ext.py index 84e57e097..d82e48f31 100644 --- a/kombu/asynchronous/aws/ext.py +++ b/kombu/asynchronous/aws/ext.py @@ -6,8 +6,8 @@ import boto3 from botocore import exceptions from botocore.awsrequest import AWSRequest - from botocore.response import get_response from botocore.httpsession import get_cert_path + from botocore.response import get_response except ImportError: boto3 = None