Skip to content

Commit 0910545

Browse files
committed
Ignore Sphinx autodoc being unable to find typevars.
1 parent 221cac4 commit 0910545

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

docs/source/conf.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
nitpick_ignore = [
2929
# Format is ('sphinx reference type', 'string'), e.g.:
3030
('py:obj', 'bytes-like'),
31+
# Typevars aren't found, for some reason.
32+
('py:class', 'ArgsT'),
33+
('py:class', 'ArgsT.args'),
34+
('py:class', 'ArgsT.kwargs'),
35+
('py:class', 'ResultT'),
36+
('py:class', 'outcome._impl.ResultT'),
37+
('py:class', 'outcome._impl.ValueT'),
3138
]
3239

3340
# -- General configuration ------------------------------------------------

0 commit comments

Comments
 (0)