diff --git a/docs/conf.py b/docs/conf.py index c973dd9..a38b2c6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,6 +30,7 @@ # Be strict about any broken references nitpicky = True +nitpick_ignore = [] # Include Python intersphinx mapping to prevent failures # jaraco/skeleton#51 @@ -42,3 +43,7 @@ autodoc_preserve_defaults = True extensions += ['jaraco.tidelift'] + +nitpick_ignore.append( + ('py:class', 'func'), +)