Deployed d4d8342 to dev with MkDocs 1.6.1 and mike 2.1.3

This commit is contained in:
github-actions 2025-05-03 23:51:08 +00:00
parent b7fe6e779f
commit 2532eb406d
8 changed files with 294 additions and 279 deletions

View file

@ -873,6 +873,9 @@ def _extract_property_docstrings(cls: Type) -> Dict[str, str]:
if line.endswith("):\n"):
ignore = False
continue
# Ignore comments
elif line.strip().startswith("#"):
continue
else:
attrs_lines.append(line)