From 91e40c101d6ccd8c6e55b6a169eb8d196f7411c3 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Wed, 2 Aug 2023 11:48:44 -0700 Subject: [PATCH] Ignore nonexistent types --- python/docs/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/docs/conf.py b/python/docs/conf.py index 151515060..76b95183e 100644 --- a/python/docs/conf.py +++ b/python/docs/conf.py @@ -190,6 +190,11 @@ autoclass_content = "init" +nitpick_ignore = [ + ("py:class", "size_t"), + ("py:class", "void"), +] + def setup(app): app.add_js_file("copybutton_pydocs.js")