From 617c1d2ae7c66126f5d4c89d3f30a2d6ed58d8a4 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 22 Mar 2023 15:20:03 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A1=20Toil=20the=20docs.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #11 --- docs/conf.py | 7 +++++++ 1 file changed, 7 insertions(+) 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']