diff options
Diffstat (limited to 't/unit/test_pools.py')
-rw-r--r-- | t/unit/test_pools.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/unit/test_pools.py b/t/unit/test_pools.py index eb2a556e..1557da95 100644 --- a/t/unit/test_pools.py +++ b/t/unit/test_pools.py @@ -1,3 +1,5 @@ +from __future__ import annotations + from unittest.mock import Mock import pytest @@ -139,7 +141,7 @@ class test_PoolGroup: def test_delitem(self): g = self.MyGroup() g['foo'] - del(g['foo']) + del g['foo'] assert 'foo' not in g def test_Connections(self): |