Skip to content

Commit 417728d

Browse files
authored
Merge pull request #84 from machow/v0.2.2
fix: patched docstrings missing their contents
2 parents 1679759 + 358ee7e commit 417728d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quartodoc/ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class _DocstringSectionPatched(ds.DocstringSection):
3939
_registry: "dict[Enum, _DocstringSectionPatched]" = {}
4040

4141
def __init__(self, value: str, title: "str | None" = None):
42-
self.value = value
4342
super().__init__(title)
43+
self.value = value
4444

4545
def __init_subclass__(cls, **kwargs):
4646
super().__init_subclass__(**kwargs)

0 commit comments

Comments
 (0)