mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-06 18:33:13 +03:00
Fixed possibly unbound variable
This commit is contained in:
parent
8d77cc039b
commit
e89c0e9e21
@ -71,6 +71,7 @@ def extract_comments(call: ast.Call, lines: list[str], file: pathlib.Path) -> Op
|
|||||||
above_line = lines[above].strip() if len(lines) >= above else None
|
above_line = lines[above].strip() if len(lines) >= above else None
|
||||||
current_line = lines[current].strip()
|
current_line = lines[current].strip()
|
||||||
|
|
||||||
|
line: Optional[str] = None
|
||||||
bad_comment: Optional[str] = None
|
bad_comment: Optional[str] = None
|
||||||
for line in (above_line, current_line):
|
for line in (above_line, current_line):
|
||||||
if line is None or '#' not in line:
|
if line is None or '#' not in line:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user