From a1708423ee6772c7f73daff046a0ff54fdfa3655 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Mon, 19 Feb 2024 20:45:06 +1100 Subject: [PATCH] Do not attempt to link to undocumented protocol --- docs/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 97289c91d0c..d52366f52e4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -40,6 +40,10 @@ intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} +autodoc_type_aliases = { + "_SupportsGetMesh": "object", +} + # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # source_suffix = ['.rst', '.md']