Skip to content

Commit

Permalink
Remove all underscored python source files from autodocs
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Jan 26, 2025
1 parent 615962f commit 414b30c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/_exts/autogen_api_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def generate_api_docs():
if file.name == "__init__.py":
if file.parent != PYTHON_PACKAGE:
content.append(make_package_section(file))
else:
elif not file.name.startswith("_"):
content.append(make_module_section(file))

API_FILE.write_text("\n".join(content))
Expand Down
1 change: 0 additions & 1 deletion src/reactpy/_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ def _script(
class SvgConstructor:
"""Constructor specifically for SVG children."""

# ruff: noqa: N815
__cache__: ClassVar[dict[str, VdomDictConstructor]] = {}

def __call__(
Expand Down

0 comments on commit 414b30c

Please sign in to comment.