refactor: ruff - underscore unused vars (#1372)

This commit is contained in:
Juro Oravec 2025-09-10 22:06:47 +02:00 committed by GitHub
parent f100cc1836
commit c5354baf4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 35 additions and 35 deletions

View file

@ -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: