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 6917204 commit d6a77d7Copy full SHA for d6a77d7
tests/test_sphinx_autodoc_typehints.py
@@ -58,8 +58,8 @@
58
S = TypeVar("S", bound="miss") # type: ignore # miss not defined on purpose # noqa: F821
59
W = NewType("W", str)
60
P = typing_extensions.ParamSpec("P")
61
-P_args = P.args
62
-P_kwargs = P.kwargs
+P_args = P.args # type:ignore[attr-defined]
+P_kwargs = P.kwargs # type:ignore[attr-defined]
63
P_co = typing_extensions.ParamSpec("P_co", covariant=True) # type: ignore
64
P_contra = typing_extensions.ParamSpec("P_contra", contravariant=True) # type: ignore
65
P_bound = typing_extensions.ParamSpec("P_bound", bound=str) # type: ignore
0 commit comments