refactor: rename context_data field to template_data (#1162)

This commit is contained in:
Juro Oravec 2025-05-04 01:49:54 +02:00 committed by GitHub
parent 28b61c1609
commit d4d834256a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 33 additions and 4 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)