mirror of https://github.com/celery/kombu.git
fix flake8 in kombu/asynchronous/aws/connection.py (#1397)
* fix flake8 in kombu/asynchronous/aws/connection.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
28c8984e7d
commit
4e8f217526
|
@ -178,7 +178,7 @@ class AsyncAWSQueryConnection(AsyncConnection):
|
|||
if not http_client_params:
|
||||
http_client_params = {}
|
||||
super().__init__(sqs_connection, http_client,
|
||||
**http_client_params)
|
||||
**http_client_params)
|
||||
|
||||
def make_request(self, operation, params_, path, verb, callback=None): # noqa
|
||||
params = params_.copy()
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import socket
|
||||
import warnings
|
||||
from unittest.mock import Mock, patch
|
||||
from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor
|
||||
from unittest.mock import Mock, patch
|
||||
|
||||
import pytest
|
||||
|
||||
|
|
Loading…
Reference in New Issue