diff options
author | pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> | 2021-09-27 21:35:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-27 21:35:17 +0300 |
commit | ee99595232a60097d816ab3f65510b8057ab364e (patch) | |
tree | 61c34662f1526adc8f0382055e73438f6f51ba5e /t/unit/test_pools.py | |
parent | 580b5219cc50cad278c4b664d0e0f85e37a5e9ea (diff) | |
download | kombu-ee99595232a60097d816ab3f65510b8057ab364e.tar.gz |
[pre-commit.ci] pre-commit autoupdate (#1393)
* [pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/asottile/pyupgrade: v2.26.0 → v2.28.0](https://github.com/asottile/pyupgrade/compare/v2.26.0...v2.28.0)
* [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>
Diffstat (limited to 't/unit/test_pools.py')
-rw-r--r-- | t/unit/test_pools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/unit/test_pools.py b/t/unit/test_pools.py index 9f33f4b8..eb2a556e 100644 --- a/t/unit/test_pools.py +++ b/t/unit/test_pools.py @@ -14,7 +14,7 @@ class test_ProducerPool: def __init__(self, *args, **kwargs): self.instance = Mock() - pools.ProducerPool.__init__(self, *args, **kwargs) + super().__init__(*args, **kwargs) def Producer(self, connection): return self.instance |