config: avoid list[], set[], dict[]
Should wait with this until Python 3.8 is dropped.
This commit is contained in:
parent
430ad145c1
commit
12054a4972
|
@ -353,9 +353,9 @@ def _get_legacy_hook_marks(
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
# abuse typeguard from importlib to avoid massive method type union thats lacking a alias
|
# abuse typeguard from importlib to avoid massive method type union thats lacking a alias
|
||||||
assert inspect.isroutine(method)
|
assert inspect.isroutine(method)
|
||||||
known_marks: set[str] = {m.name for m in getattr(method, "pytestmark", [])}
|
known_marks: Set[str] = {m.name for m in getattr(method, "pytestmark", [])}
|
||||||
must_warn: list[str] = []
|
must_warn: List[str] = []
|
||||||
opts: dict[str, bool] = {}
|
opts: Dict[str, bool] = {}
|
||||||
for opt_name in opt_names:
|
for opt_name in opt_names:
|
||||||
opt_attr = getattr(method, opt_name, AttributeError)
|
opt_attr = getattr(method, opt_name, AttributeError)
|
||||||
if opt_attr is not AttributeError:
|
if opt_attr is not AttributeError:
|
||||||
|
|
Loading…
Reference in New Issue