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 d47002d commit 9505f6bCopy full SHA for 9505f6b
spec/conf.py
@@ -64,7 +64,6 @@
64
# autodoc wants to make cross-references for every type hint. But a lot of
65
# them don't actually refer to anything that we have a document for.
66
nitpick_ignore = [
67
- ('py:class', 'array'),
68
('py:class', 'device'),
69
('py:class', 'dtype'),
70
('py:class', 'NestedSequence'),
@@ -80,6 +79,9 @@
80
79
('py:class', 'finfo_object'),
81
('py:class', 'iinfo_object'),
82
]
+nitpick_ignore_regex = [
83
+ ('py:class', '.*array'),
84
+]
85
# In array_object.py we have to use aliased names for some types because they
86
# would otherwise refer back to method objects of array
87
autodoc_type_aliases = {
0 commit comments