We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42b182 commit 7bea6c7Copy full SHA for 7bea6c7
src/_pytest/python.py
@@ -12,11 +12,13 @@
12
from collections.abc import Sequence
13
from functools import partial
14
from types import ModuleType
15
+from typing import Any
16
from typing import Callable
17
from typing import Dict
18
from typing import Iterable
19
from typing import List
20
from typing import Optional
21
+from typing import Mapping
22
from typing import Tuple
23
from typing import Union
24
@@ -1445,7 +1447,7 @@ def __init__(
1445
1447
config=None,
1446
1448
callspec: Optional[CallSpec2] = None,
1449
callobj=NOTSET,
- keywords: Optional[Iterable[str]] = None,
1450
+ keywords: Optional[Mapping[str, Any]] = None,
1451
session=None,
1452
fixtureinfo: Optional[FuncFixtureInfo] = None,
1453
originalname=None,
0 commit comments