summaryrefslogtreecommitdiff
path: root/testenv/tests/test_aiotools.py
diff options
context:
space:
mode:
Diffstat (limited to 'testenv/tests/test_aiotools.py')
-rw-r--r--testenv/tests/test_aiotools.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/testenv/tests/test_aiotools.py b/testenv/tests/test_aiotools.py
index 9ccaee0a..1ceae318 100644
--- a/testenv/tests/test_aiotools.py
+++ b/testenv/tests/test_aiotools.py
@@ -22,8 +22,6 @@
import asyncio
-from typing import List
-
import pytest
from kvmd.aiotools import AioExclusiveRegion
@@ -123,7 +121,7 @@ async def test_fail__region__access_two() -> None:
# =====
@pytest.mark.asyncio
async def test_ok__shield_fg() -> None:
- ops: List[str] = []
+ ops: list[str] = []
async def foo(op: str, delay: float) -> None: # pylint: disable=disallowed-name
await asyncio.sleep(delay)