Skip to content

Commit c75ee78

Browse files
more of that
1 parent 64160a5 commit c75ee78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/_pytest/nodes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import os
22
import warnings
33
from pathlib import Path
4+
from typing import Any
45
from typing import Callable
56
from typing import Iterable
67
from typing import Iterator
@@ -175,7 +176,7 @@ def from_parent(
175176
name: str,
176177
fs_path: Optional[Path] = None,
177178
nodeid: Optional[str] = None,
178-
**kw,
179+
**kw: Any,
179180
):
180181
"""Public constructor for Nodes.
181182

0 commit comments

Comments
 (0)