From 2bc39975c796880f040324e1ae95c5fa7d017702 Mon Sep 17 00:00:00 2001 From: Mathieu Scheltienne Date: Tue, 1 Oct 2024 16:42:54 +0200 Subject: [PATCH] fix nitpick --- doc/conf.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 50926db..1d97076 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -59,7 +59,12 @@ # Sphinx will warn about all references where the target cannot be found. nitpicky = True -nitpick_ignore = [] +nitpick_ignore = [ + ("py:class", "array"), + ("py:class", "n_channels"), + ("py:class", "n_samples"), + ("py:class", "shape"), +] # A list of ignored prefixes for module index sorting. modindex_common_prefix = [f"{package}."] @@ -147,9 +152,6 @@ "BaseClock": ":class:`stimuli.time.BaseClock`", } numpydoc_xref_ignore = { - "array", - "n_channels", - "n_samples", "of", "shape", }