diff --git a/docs/conf.py b/docs/conf.py index 4e5eae3..fad05ae 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,6 +31,13 @@ # Be strict about any broken references nitpicky = True +nitpick_ignore = [ + # jaraco/jaraco.collections#11 + ('py:class', 'v, remove specified key and return the corresponding value.'), + ('py:class', 'None. Update D from dict/iterable E and F.'), + ('py:class', 'D[k] if k in D, else d. d defaults to None.'), +] + # Include Python intersphinx mapping to prevent failures # jaraco/skeleton#51 extensions += ['sphinx.ext.intersphinx']