From fba16127ac69deb6244e39ba89b845f64e0a650c Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 12 Dec 2024 22:06:34 +0100 Subject: [PATCH] fix: docs reference target not found --- docs/conf.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 65ed403..46555a2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ # # This file is part of Flask-IIIF # Copyright (C) 2014-2020 CERN. -# Copyright (C) 2022 Graz University of Technology. +# Copyright (C) 2022-2024 Graz University of Technology. # # Flask-IIIF is free software; you can redistribute it and/or modify # it under the terms of the Revised BSD License; see LICENSE file for @@ -316,4 +316,9 @@ # Autodoc configuraton. autoclass_content = "both" -nitpick_ignore = [("py:class", "type")] +nitpick_ignore = [ + ("py:class", "type"), + ("py:class", "t.ClassVar"), + ("py:class", "t.Optional"), + ("py:class", "t.Collection"), +]