mirror of
https://github.com/django-components/django-components.git
synced 2025-09-20 04:39:45 +00:00
refactor: ruff - underscore unused vars (#1372)
This commit is contained in:
parent
f100cc1836
commit
c5354baf4f
10 changed files with 35 additions and 35 deletions
|
@ -846,7 +846,7 @@ def _extract_property_docstrings(cls: Type) -> Dict[str, str]:
|
|||
- The function assumes that the class is defined at the global scope (module level)
|
||||
and that the body is indented with 4 spaces.
|
||||
"""
|
||||
lines, start_line_index = inspect.getsourcelines(cls)
|
||||
lines, _start_line_index = inspect.getsourcelines(cls)
|
||||
attrs_lines: List[str] = []
|
||||
ignore = True
|
||||
for line in lines:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue