From 93c1bbe3dc6be4ef353d2fc9c2c6f7ad482818c1 Mon Sep 17 00:00:00 2001 From: mmatera Date: Fri, 29 Mar 2024 13:21:19 -0300 Subject: [PATCH] init for DjangoDocGuideSection --- mathics_django/doc/django_doc.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mathics_django/doc/django_doc.py b/mathics_django/doc/django_doc.py index caa0a2851..7384935e6 100644 --- a/mathics_django/doc/django_doc.py +++ b/mathics_django/doc/django_doc.py @@ -261,6 +261,17 @@ class DjangoDocGuideSection(DjangoDocSection, DjangoDocElement): are examples of Guide Sections, and each contains a number of Sections. like NamedColors or Orthogonal Polynomials. """ + def __init__( + self, + chapter: DocChapter, + title: str, + text: str, + submodule, + installed: bool = True, + ): + super().__init__(chapter, title, text, None, installed, False) + self.section = submodule + def get_uri(self) -> str: """Return the URI of this section."""