Skip to content

Commit d6a77d7

Browse files
spacemanspiff2007-
authored and
-
committed
Update test_sphinx_autodoc_typehints.py
1 parent 6917204 commit d6a77d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_sphinx_autodoc_typehints.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
S = TypeVar("S", bound="miss") # type: ignore # miss not defined on purpose # noqa: F821
5959
W = NewType("W", str)
6060
P = typing_extensions.ParamSpec("P")
61-
P_args = P.args
62-
P_kwargs = P.kwargs
61+
P_args = P.args # type:ignore[attr-defined]
62+
P_kwargs = P.kwargs # type:ignore[attr-defined]
6363
P_co = typing_extensions.ParamSpec("P_co", covariant=True) # type: ignore
6464
P_contra = typing_extensions.ParamSpec("P_contra", contravariant=True) # type: ignore
6565
P_bound = typing_extensions.ParamSpec("P_bound", bound=str) # type: ignore

0 commit comments

Comments
 (0)