From 599ba179716ac27f53cd62997d084c5b654bafc6 Mon Sep 17 00:00:00 2001 From: "Philipp A." Date: Mon, 29 Jul 2024 17:41:39 +0200 Subject: [PATCH] =?UTF-8?q?fullname=E2=86=92name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../docs/_templates/autosummary/class.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst b/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst index e4665dfc..ccdae8c0 100644 --- a/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst +++ b/{{cookiecutter.project_name}}/docs/_templates/autosummary/class.rst @@ -13,7 +13,7 @@ Attributes table .. autosummary:: {% for item in attributes %} - ~{{ fullname }}.{{ item }} + ~{{ name }}.{{ item }} {%- endfor %} {% endif %} {% endblock %} @@ -26,7 +26,7 @@ Methods table .. autosummary:: {% for item in methods %} {%- if item != '__init__' %} - ~{{ fullname }}.{{ item }} + ~{{ name }}.{{ item }} {%- endif -%} {%- endfor %} {% endif %}