Skip dataclass attributes to remove duplicate entries

This commit is contained in:
Mark Backman
2025-06-25 22:23:51 -04:00
parent cc66fddca9
commit fe6bbdaefe
2 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ autodoc_default_options = {
"members": True,
"member-order": "bysource",
"undoc-members": True,
"exclude-members": "__weakref__",
"exclude-members": "__weakref__,__init__",
"no-index": True,
"show-inheritance": True,
}