From fbf16304acf3d985a452d8bf874e7a00ba7ae831 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 12 Dec 2024 21:48:20 +0100 Subject: [PATCH] fix: docs reference target not found --- docs/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index e0f2198ce..d2735def1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2016-2022 CERN. -# Copyright (C) 2022 Graz University of Technology. +# Copyright (C) 2022-2024 Graz University of Technology. # # Invenio is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -322,3 +322,9 @@ # Autodoc configuraton. autoclass_content = "both" + +nitpick_ignore = [ + ("py:class", "t.ClassVar"), + ("py:class", "Query"), + ("py:attr", "query_class"), +]