diff options
| author | Matus Valo <matusvalo@gmail.com> | 2020-05-15 23:30:55 +0200 |
|---|---|---|
| committer | Matus Valo <matusvalo@gmail.com> | 2020-05-15 23:30:55 +0200 |
| commit | c9451787be25a03edc9da7f5375290753eafe00a (patch) | |
| tree | 9ed392194e388e02b32d8533e190f35899294dc4 /t/integration | |
| parent | 963819dd73c2076c1cf5c82364da10acf87f90ce (diff) | |
| download | kombu-c9451787be25a03edc9da7f5375290753eafe00a.tar.gz | |
Fix flake8
Diffstat (limited to 't/integration')
| -rw-r--r-- | t/integration/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/integration/common.py b/t/integration/common.py index 3ceeda3b..d32fc936 100644 --- a/t/integration/common.py +++ b/t/integration/common.py @@ -51,7 +51,7 @@ class BasicFunctionality(object): test_queue = kombu.Queue('test_empty', routing_key='test_empty') with connection as conn: - with conn.channel() as channel: + with conn.channel(): consumer = kombu.Consumer( conn, [test_queue], accept=['pickle'] ) |
