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"), +]