We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 615962f commit 414b30cCopy full SHA for 414b30c
docs/source/_exts/autogen_api_docs.py
@@ -43,7 +43,7 @@ def generate_api_docs():
43
if file.name == "__init__.py":
44
if file.parent != PYTHON_PACKAGE:
45
content.append(make_package_section(file))
46
- else:
+ elif not file.name.startswith("_"):
47
content.append(make_module_section(file))
48
49
API_FILE.write_text("\n".join(content))
src/reactpy/_html.py
@@ -174,7 +174,6 @@ def _script(
174
class SvgConstructor:
175
"""Constructor specifically for SVG children."""
176
177
- # ruff: noqa: N815
178
__cache__: ClassVar[dict[str, VdomDictConstructor]] = {}
179
180
def __call__(
0 commit comments