X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e0a780a5056f1039edcf12c7a44198be902afbbc..44d5da00b520a05cd56e58b3998660f64ea59ebd:/tests/optional.py diff --git a/tests/optional.py b/tests/optional.py index a4e9441..853ecaa 100644 --- a/tests/optional.py +++ b/tests/optional.py @@ -14,11 +14,11 @@ Specifying the name of the default behavior in `--run-optional=` is harmless. Adapted from https://pypi.org/project/pytest-optional-tests/, (c) 2019 Reece Hart """ -from functools import lru_cache import itertools import logging import re -from typing import FrozenSet, List, Set, TYPE_CHECKING +from functools import lru_cache +from typing import TYPE_CHECKING, FrozenSet, List, Set import pytest @@ -32,8 +32,8 @@ log = logging.getLogger(__name__) if TYPE_CHECKING: - from _pytest.config.argparsing import Parser from _pytest.config import Config + from _pytest.config.argparsing import Parser from _pytest.mark.structures import MarkDecorator from _pytest.nodes import Node