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 93a6a5e commit ea10f10Copy full SHA for ea10f10
tests/test_sphinx_autodoc_typehints.py
@@ -128,7 +128,13 @@ def method(self: T) -> T:
128
pytest.param(Callable, "typing", "Callable", (), id="Callable"),
129
pytest.param(Callable[..., str], "typing", "Callable", (..., str), id="Callable_returntype"),
130
pytest.param(Callable[[int, str], str], "typing", "Callable", (int, str, str), id="Callable_all_types"),
131
- pytest.param(collections.abc.Callable[[int, str], str], "collections.abc", "Callable", (int, str, str), id="collections.abc.Callable_all_types"),
+ pytest.param(
132
+ collections.abc.Callable[[int, str], str],
133
+ "collections.abc",
134
+ "Callable",
135
+ (int, str, str),
136
+ id="collections.abc.Callable_all_types",
137
+ ),
138
pytest.param(Pattern, "typing", "Pattern", (), id="Pattern"),
139
pytest.param(Pattern[str], "typing", "Pattern", (str,), id="Pattern_parametrized"),
140
pytest.param(Match, "typing", "Match", (), id="Match"),
0 commit comments