Skip to content

Commit

Permalink
Update test_sphinx_autodoc_typehints.py
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Jan 27, 2023
1 parent eed73af commit bb75e05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_sphinx_autodoc_typehints.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
S = TypeVar("S", bound="miss") # type: ignore # miss not defined on purpose # noqa: F821
W = NewType("W", str)
P = typing_extensions.ParamSpec("P")
P_args = P.args
P_kwargs = P.kwargs
P_args = P.args # type:ignore[attr-defined]
P_kwargs = P.kwargs # type:ignore[attr-defined]
P_co = typing_extensions.ParamSpec("P_co", covariant=True) # type: ignore
P_contra = typing_extensions.ParamSpec("P_contra", contravariant=True) # type: ignore
P_bound = typing_extensions.ParamSpec("P_bound", bound=str) # type: ignore
Expand Down

0 comments on commit bb75e05

Please sign in to comment.