From 83cf954e95dc081d380a3e29522f3e9524f31207 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Fri, 6 Jun 2025 19:31:36 +0200 Subject: [PATCH] Codestyle issues fixed --- docs/source/conf.py | 2 +- docs/source/generate_class_list.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 6187a6f..aff8185 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -30,4 +30,4 @@ html_theme = 'pydata_sphinx_theme' html_static_path = ['_static'] autodoc_inherit_docstrings = True -autoclass_content = 'both' \ No newline at end of file +autoclass_content = 'both' diff --git a/docs/source/generate_class_list.py b/docs/source/generate_class_list.py index 65c0548..d7272de 100644 --- a/docs/source/generate_class_list.py +++ b/docs/source/generate_class_list.py @@ -61,7 +61,6 @@ def write_dochtree(f: TextIOWrapper, title: str, items: list[str]): f.write('```{toctree}\n') f.write(':maxdepth: 1\n') f.write(f':caption: {title}:\n') - #f.write(':hidden:\n') for text in items: if not text.startswith('_'): f.write(f"{text}\n")