diff options
author | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-09-04 18:08:40 +0300 |
commit | ee3e224e396494cd0d69bb6167087a071a20349c (patch) | |
tree | 5becd28570e58a03c6e1e231d0db24c264a73f88 /testenv/tests/test_aiotools.py | |
parent | 4b75221e9470b4a009955d7677f16adf8e23e302 (diff) |
new typing style
Diffstat (limited to 'testenv/tests/test_aiotools.py')
-rw-r--r-- | testenv/tests/test_aiotools.py | 4 |
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) |